vote up 0 vote down star

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

flag

You need to say what programming language you're using, and with which GUI toolkit, on which operating systems. – RichieHindle Jun 25 at 12:19
Sorry Richie, I am using WPF & C# – Ortus Mallum Jun 25 at 12:24

2 Answers

vote up 0 vote down check

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

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.