Return to Snippet

Revision: 6818
at June 17, 2008 10:44 by Anthony


Initial Code
byte [] dBytes = { 1, 2, 3, 4, 5}
string str;
System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();
str = enc.GetString(dBytes);

Initial URL


Initial Description


Initial Title
Convert Byte Array to String

Initial Tags
array, convert

Initial Language
C#