This blog has personalition features for you, the reader. Below is a key of what all the icons mean and which aspects of the layout they change.
Close Window
Utili istruzioni che mi appunto per non doverle cercare sempre:
1: // da Stream a String
2: byte[] b = MioMemoryStream.ToArray();
3: string s = Encoding.UTF8.GetString(b);
4:
5: // da String a Stream
6: string s = "asdasdasd";
7: byte[] b = Encoding.UTF8.GetBytes(s);
8: MemoryStream ms = new MemoryStream(b);
sabato 1 settembre 2007 14:29