以 ANSI 格式将内容粘贴到文本框
在 C# 中粘贴时如何将文本框内容转换为 ANSI 格式?
How can I make the textbox contents to ANSI format when paste in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在 C# 中粘贴时如何将文本框内容转换为 ANSI 格式?
How can I make the textbox contents to ANSI format when paste in C#?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
.NET 在内部各处使用 Unicode 表示字符串,包括表单控件。 所以我认为你真正的问题是,给定一个字节数组,如何使用所需的源编码(某种风格的“ANSI”)将该字节数组转换为 Unicode?
System.Text.Encoding 这里有有用的类。
.NET uses Unicode for strings everywhere internally, including for the forms controls. So I think you're real question is, given a byte-array, how do I convert that byte-array into Unicode using a desired source encoding ("ANSI" of some flavor)?
System.Text.Encoding has useful classes here.
尝试使用 FormatProvider 将 Unicode 转换为 Ansi。 也许可以是一个解决方案?
Try convert the Unicode to Ansi using FormatProvider. Maybe can is a solution?