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

ส่งคืนองค์ประกอบทั้งหมดในลำดับเป็นจำนวนเต็มที่ลงนาม 64 บิตใน C #


ขั้นแรก ตั้งค่าอาร์เรย์สตริง

string[] num = { "One", "Two", "Three", "Four", "Five"};

ใช้วิธี Linq LongCount เพื่อรับการนับองค์ประกอบ

num.AsQueryable().LongCount();

นี่คือรหัสที่สมบูรณ์ -

ตัวอย่าง

using System;
using System.Collections.Generic;
using System.Linq;
class Demo {
   static void Main() {
      string[] num = { "One", "Two", "Three", "Four", "Five"};
      long res = num.AsQueryable().LongCount();
      Console.WriteLine("{0} elements", res);
   }
}

ผลลัพธ์

5 elements