public static void Main()
string [] names = {"A" , "B" , "C" , "D"};
Console.WriteLine("String " + names[2]);
Console.WriteLine("Integer: + " +tmp[2]);
Console.WriteLine("The length of the array is: " + tmp. Length);
int [] myArr = {6,42,3,7};
for (int x=0; x <myArr.Length;x++){
Console.WriteLine("The sum of values in the array is : " + sum);
int [ , ] sample = {{1,2,3,},{4,5,6}};
string [ , ] names2 = {{"Rie","Ann","Hi"},{"J","Mark","Hello"}};
Console.WriteLine(names2 [1 , 1]);
Console.WriteLine(A [k]);