public static void Main()
Console.WriteLine("Hello World");
readonly Student[,] students = new Student[10, 10];
int RowToIndex(string row)
string temp = row.ToUpper();
public Student this[string row, int column]
return students[RowToIndex(row), column - 1];
students[RowToIndex(row), column - 1] = value;