c# string get bytes 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# string to byte array
// Convert a string to a C# byte[]
//change encoding depending on your data
string someText = "some data as text.";
byte[] bytes = Encoding.ASCII.GetBytes(author);
// Convert a byte array to a C# string
string str = Encoding.ASCII.GetString(bytes);
Console.WriteLine(str);
Example 3: c# get bytes from string
byte[] bytes = Encoding.ASCII.GetBytes(someString);