Archive for Settembre 7th, 2007

String to byte array and byte array to string

Settembre 7th, 2007

Description: Converts string to byte array and vice versa

Link: http://www.codekeep.net/snippets/0d80c903-cb70-44a2-9f4e-f3a6c545b436.aspx

//String to byte array
new System.Text.ASCIIEncoding().GetBytes("ABC");
//Byte array to string
new System.Text.ASCIIEncoding().GetString(byteArray);