using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello World");
public Table(int rows, int cols)
cells = new List<Cell>(rows * cols);
public string GetStringValue(int row, int col)
if(cells[row*col].Kind == CellKind.Text)
return cells[row*col].Kind.ToString();
throw new Exception("error");