I need help with convert numbers from byte array to string in C#.
There is my code:
string Astr = "123456789";
byte[] AByte = Astr.Select(c => (byte)(c - '0')).ToArray();
Astr = AByte.ToString(); // This is problem - I need convert numbers back to string
Thank you for yours ideas :)