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

คุณสมบัติ Array.Length ของคลาสอาร์เรย์ทำอะไรใน C #


คุณสมบัติ Array.Lenth ใน C # ถูกใช้เพื่อค้นหาความยาวของอาร์เรย์

มาตั้งค่าคลาสอาร์เรย์ก่อน -

Array arr = Array.CreateInstance(typeof(String), 3);
arr.SetValue("Electronics", 0);
arr.SetValue("Clothing", 1);
arr.SetValue("Appliances", 2);

เนื่องจากความยาวของอาร์เรย์คือ 3 คุณสมบัติ Length จะให้ผลลัพธ์เป็น 3 -

arr.Length

ต่อไปนี้เป็นรหัสที่จะใช้คุณสมบัติ Array.Length ของคลาสอาร์เรย์ -

ตัวอย่าง

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace lower {
   class Program {
      static void Main(string[] args) {
         Array arr = Array.CreateInstance(typeof(String), 3);
         arr.SetValue("Electronics", 0);
         arr.SetValue("Clothing", 1);
         arr.SetValue("Appliances", 2);

         Console.WriteLine("Length: {0}",arr.Length.ToString());

         Console.ReadLine();
      }
   }
}

ผลลัพธ์

Length: 3