Welcome to my site. Well i'm still working on it.
This is my
blogspot site. You can check it.
int[] numbers = new int[] { 87, 101, 108, 99, 111, 109, 101 };
string result = string.Empty;
for (int i = 0; i < numbers.Length; i++)
result += (char)numbers[i];
Console.WriteLine(result);