I have the following line of code for a Windows forms application:
return Encoding.ASCII.GetBytes(chars.ToArray());
This line worked fine, but today I was trying my code on the Windows Phone/Silverlight framework and the:
Encoding.ASCII
Library does not exist there. Is there any (simple) way to do the same thing but with a Silverlight library?