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

โปรแกรม C# เพื่อลบรายการออกจาก Set


ประการแรก ประกาศ HashSet และเพิ่มองค์ประกอบ -

var names = new HashSet<string>();
names.Add("Tim");
names.Add("John");
names.Add("Tom");
names.Add("Kevin");

หากต้องการลบองค์ประกอบ ให้ใช้ RemoveWhere

names.RemoveWhere(x => x == "John");

ให้เราดูตัวอย่างที่สมบูรณ์ −

ตัวอย่าง

using System;
using System.Collections.Generic;
public class Program {
   public static void Main() {
      var names = new HashSet < string > ();
      names.Add("Tim");
      names.Add("John");
      names.Add("Tom");
      names.Add("Kevin");
      Console.WriteLine("Initial Set...");
      foreach(var val in names) {
         Console.WriteLine(val);
      }
      names.RemoveWhere(x => x == "John");
      Console.WriteLine("Set after removing an element...");
      foreach(var val in names) {
         Console.WriteLine(val);
      }
   }
}