
Converting an unicode string to ascii code string
Use the GetBytes method of the System.Text.ASCIIEncoding class.
Note that because .NET strings are Unicode encoded, you will not have a
System.String type that is ASCII encoded. The ASCII encoded string will be
an array of bytes (that you could for example write to a System.IO.Stream).
Quote:
> How can I convert an Unicode string to an Ascii code string ?
> Thnx.