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

คุณสมบัติ Length ของคลาส BitArray ใน C # คืออะไร


คุณสมบัติ length ใช้เพื่อรับหรือกำหนดจำนวนองค์ประกอบใน BitArray

BitArray ของเรา

BitArray arr = new BitArray( 5 );

ในการคำนวณความยาว ให้ใช้คุณสมบัติความยาว

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

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อเรียนรู้วิธีทำงานกับคุณสมบัติ Length ของคลาส BitArray

ตัวอย่าง

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      BitArray arr = new BitArray( 5 );
      Console.WriteLine( "Count: {0}", arr.Count );
      Console.WriteLine( "Length: {0}", arr.Length );
   }
}

ผลลัพธ์

Count: 5
Length: 5