public static void Main()
String[] 國家 = new String[11];
國家[0] = "United Kingdom of Great Britain and Northern Ireland";
國家[3] = "United States of America";
國家[9] = "Holy Roman Empire of the German Nation";
Console.WriteLine("Length of Array: {0,19}", 國家.Length);
Console.WriteLine("Number of Dimensions: {0,19}", 國家.Rank);
for(int i=0;i<國家.Length;i++)
Console.WriteLine("國家 {0} 是 {1}", i, 國家[i]);