GetLength รับจำนวนเต็มที่ 32 บิตซึ่งแสดงถึงจำนวนขององค์ประกอบในมิติที่ระบุของอาร์เรย์
ขั้นแรก ตั้งค่าอาร์เรย์
int[,] arr = new int[20, 30];
สำหรับมิติข้อมูลที่ระบุของอาร์เรย์ ให้ตั้งค่าดัชนีในเมธอด GetLength() เช่น −
Arr.GetLength(1);
ตัวอย่าง
using System; class Program { static void Main() { int[,] arr = new int[20, 30]; int len = arr.GetLength(1); Console.WriteLine(len); } }
ผลลัพธ์
30