STRING TO BYTE code example
Example 1: c# string to byte array
string author = "Mahesh Chand";
byte[] bytes = Encoding.ASCII.GetBytes(author);
string str = Encoding.ASCII.GetString(bytes);
Example 2: c# string to byte array
string someText = "some data as text.";
byte[] bytes = Encoding.ASCII.GetBytes(author);
string str = Encoding.ASCII.GetString(bytes);
Console.WriteLine(str);
Example 3: convert string to byte java
String example = "Convert Java String";
byte[] bytes = example.getBytes();
Example 4: String by byte array in java
String str = "Example String";
byte[] b = str.getBytes();