using System;
public class Program
{
public static void Main()
var array = new [] {
"string1",
"string2"
};
Console.WriteLine(array.Length);
}