[ad_1]
You can use string.Concat
var result = string.Concat(byteValues);
You can also re-write your loop using the same method:
string stringValue = string.Concat(Enumerable.Range(1, 31));
5
[ad_2]
solved How do I preserve ASCII value in string?
[ad_1]
You can use string.Concat
var result = string.Concat(byteValues);
You can also re-write your loop using the same method:
string stringValue = string.Concat(Enumerable.Range(1, 31));
5
[ad_2]
solved How do I preserve ASCII value in string?