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? | |||||
feedback
|
|
It is easy to implement yourself, Unicode never messed with the ASCII codes:
| |||||
|
feedback
|
|
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. | |||
|
feedback
|
|
According to this MS forum thread, Windows Phone 7 does not support | |||
feedback
|