Csharp create alphabet string array

string tmp = "{";
for (int i = 65; i <= 90; i++) {
tmp += "\"" + ((char)i) +"\",";
}
tmp += "}";
Console.WriteLine(tmp);

Result:

{"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z",}

--

--