// C# program to illustrate the
// Array.GetLongLength() method
using System;
namespace geeksforgeeks {
class GFG {
// Main Method
public static void Main()
{
// Three-dimensional array.
int[,, ] arr = new int[,, ] {
{ { 1, 2, 3 },
{ 4, 5, 6 },
{ 6, 7, 8 }
},
{ { 11, 12, 13 },
{ 14, 15, 16 },
{ 17, 18, 19 }
},
{ { 21, 22, 23 },
{ 24, 25, 26 },
{ 27, 28, 29 }
},
};
Console.Write("Total Number of Elements in"
+ " first dimension of arr: ");
// using GetLongLength Method
Console.Write(arr.GetLongLength(0));
// getting the type of returned value
Console.WriteLine("\nType of returned Length: "
+ (arr.GetLongLength(0)).GetType());
// showing difference between GetLength
// and GetLongLength method by getting
// the type of the both method's
// returned value
Console.Write("\nTotal Number of Elements in "
+ "second dimension of arr: ");
// using GetLength Method
Console.Write(arr.GetLength(1));
// getting the type of returned value
Console.WriteLine("\nType of returned Length: "
+ (arr.GetLength(1)).GetType());
Console.Write("\nTotal Number of Elements in "
+ "second dimension of arr: ");
// using GetLongLength() Method
Console.Write(arr.GetLongLength(1));
// getting the type of returned value
Console.WriteLine("\nType of returned Length: "
+ (arr.GetLongLength(1)).GetType());
}
}
}