I couldn\'t find any information pertaining to this question. I am trying to create a global array in C# so that I can input information into it at different points in my co
string[] values;
Or to declare one of a particular length:
string[] values = new string[6]; // creates an array with a length of 6.