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

รายการทั่วไปใน C # คืออะไร


Generic List เป็นคอลเล็กชันทั่วไปใน C# ขนาดสามารถเพิ่มแบบไดนามิกได้โดยใช้ List ซึ่งแตกต่างจาก Arrays

เรามาดูตัวอย่างกัน −

เราได้กำหนดรายการไว้ก่อน -

List<string> myList = new List<string>()

ตอนนี้เพิ่มองค์ประกอบในรายการ -

List<string> myList = new List<string>() {
   "mammals",
   "reptiles",
   "amphibians"
}

ตอนนี้ใช้คุณสมบัติให้เรานับจำนวนขององค์ประกอบที่เพิ่ม -

ตัวอย่าง

using System;
using System.Collections.Generic;

class Program {
   static void Main() {
      List<string> myList = new List() {
         "mammals",
         "reptiles",
         "amphibians"
      };
      Console.WriteLine(myList.Count);
   }
}