C# array index tostring

C#
string[] greetings = new string[] {"hi", "hello", "hey there"};
Console.WriteLine(greetings[2].ToString());
Source

Also in C#: