以 ANSI 格式将内容粘贴到文本框

发布于 2024-07-25 09:07:57 字数 36 浏览 8 评论 0原文

在 C# 中粘贴时如何将文本框内容转换为 ANSI 格式?

How can I make the textbox contents to ANSI format when paste in C#?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我还不会笑 2024-08-01 09:07:57

.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.

智商已欠费 2024-08-01 09:07:57

尝试使用 FormatProvider 将 Unicode 转换为 Ansi。 也许可以是一个解决方案?

Try convert the Unicode to Ansi using FormatProvider. Maybe can is a solution?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文