I need to get the ASCII values for individual string in C#
Say for example I have an array
string[] ar = new string{"1", "2", "3", "4", "5"};
I need to get the ASCII values of these individual array elements. Like for ar[0], ar[1]. I do not want to iterate through a loop
So I tried
Encoding.UTF8.GetBytes(ar[0])
and it returns
System.byte[]
How do i convert it to the original ASCII knowing that this return just a byte array.