c# convert byte array to struct code example
Example 1: c# string to byte array
string author = "Mahesh Chand";
// Convert a C# string to a byte array
byte[] bytes = Encoding.ASCII.GetBytes(author);
// Convert a byte array to a C# string.
string str = Encoding.ASCII.GetString(bytes);
Example 2: c# store byte array as string
string utfString = Encoding.UTF8.GetString(bytes, 0, bytes.Length);