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

ล้างรายการใน C #


อันดับแรก กำหนดรายการ −

List<int> myList = new List<int>();
myList.Add(45);
myList.Add(77);

ในการล้างรายการด้านบนนี้ ให้ใช้ Clear() −

myList.Clear();

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

ตัวอย่าง

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      List<int> myList = new List<int>();
      myList.Add(45);
      myList.Add(77);
      Console.WriteLine("Elements: "+myList.Count);
      myList.Clear();
      Console.WriteLine("Elements after using clear: "+myList.Count);
   }
}

ผลลัพธ์

Elements: 2
Elements after using clear: 0