Is there a way to use ASCIIEncoding in Windows Phone 7?
Unless I'm doing something wrong Encoding.ASCII doesn't exist and I'm needing it for C# -> PHP encryption (as PHP only uses ASCII in SHA1 encryption).
Any suggestions?
|
Is there a way to use ASCIIEncoding in Windows Phone 7? Unless I'm doing something wrong Any suggestions? |
|||||
|
|
It is easy to implement yourself, Unicode never messed with the ASCII codes:
|
||||
|
Not really seeing any detail in your question this could be off track. You are right Silverlight has no support for the ASCII encoding. However I suspect that in fact UTF8 will do what you need. Its worth bearing in mind that a sequence of single byte ASCII only characters and the same set of characters encoded as UTF-8 are identical. That is the the complete ASCII character set is repeated verbatim by the first 128 single byte code points in UTF-8. |
|||
|
|
|
I have a Silverlight app that writes CSV files, which have to be encoded in ASCII (using UTF-8 causes accented characters to show up wrong when you open the files in Excel). Since Silverlight doesn't have an Encoding.ASCII class, I implemented one as follows. It works for me, hope it's useful to you as well:
|
|||
|
|
|
According to this MS forum thread, Windows Phone 7 does not support |
|||
|