csharp public 2d array

Code Example - csharp public 2d array

                
                        // in namespace, above main form declaration

public class Globals
    {
        public static string[,] tableArray;
	}

//... in main or other method

Globals.tableArray = new string[rowLength,colLength];