Un esempio C# di come convertire una stringa in byte codificati in unicode

C#

string s = "Testo di prova";
byte[] fileContent = Encoding.Unicode.GetBytes(s);
oppure in ASCII

C#

string s = "Testo di prova";
byte[] fileContent = Encoding.ASCII.GetBytes(s);
Questo torna utile nel caso servisse scrivere su uno Stream.
Tags:
C#236 Esempi225
Potrebbe interessarti anche: