Hi i am moving to c# now from VBS and .net this is my first attempt at making anything in C# so it is a very basic question. How do i make an array?
Below is my current attempt
string[] arr1 = new string[1, 2];
arr1[0, 0] = "One";
arr1[0, 1] = "two";
arr1[0, 2] = "three";
arr1[1, 0] = "four";
arr1[1, 1] = "five";
arr1[1, 2] = "six";