Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 C# 桌面应用程序。我需要生成一个文件(我从 sql 数据库中读取)。在名称等字符串值中,我想使用 Ã 等字符。我将区域设置更改为标准并选择罗马尼亚格式,但在我的文本文件中我有 char Ă。我有更多必须使用的字符:
我不知道我应该修改什么来替换这些字符。有人可以帮我使用这个字符生成我的文件吗?
如果你看这张照片
你会找到你需要的字符数。所以现在你需要做的是:如果你从 DB 读取到string s;:
string s;
int CharNumToReplace; int CharNumThatReplace the former; s.Replace((char)(CharNumToReplace), (char)(CharNumThatReplace))
我实际上在这里看不到您需要的字符,但在调试模式下,您可以通过放置手表来找到它们的值(int)myVal
(int)myVal
这里: