Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

จะใช้วิธี GetUpperBound ของคลาสอาร์เรย์ใน C # ได้อย่างไร


เมธอด GetUpperBound() ของคลาสอาร์เรย์ใน C# รับขอบเขตบนของมิติที่ระบุในอาร์เรย์

ขั้นแรก ตั้งค่าอาร์เรย์และรับขอบเขตบนดังที่แสดงด้านล่าง -

arr.GetUpperBound(0).ToString()

ต่อไปนี้เป็นตัวอย่างที่ระบุการใช้งานเมธอด GetUpperBound() ใน C#

ตัวอย่าง

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Demo {
   class Program {
      static void Main(string[] args) {
         Array arr = Array.CreateInstance(typeof(String), 6);
         arr.SetValue("One", 0);
         arr.SetValue("Two", 1);
         arr.SetValue("Three", 3);
         arr.SetValue("Four", 4);
         arr.SetValue("Five", 5);
         Console.WriteLine("Upper Bound: {0}",arr.GetUpperBound(0).ToString());
         Console.ReadLine();
      }
   }
}

ผลลัพธ์

Upper Bound: 5