Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

सॉर्टेडसेट से तत्वों को हटाएं जो सी # में भविष्यवाणी से मेल खाते हैं

विधेय से मेल खाने वाले सॉर्टेडसेट से तत्वों को हटाने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections.Generic;
public class Demo {
   private static bool demo(int i) {
      return ((i % 10) == 0);
   }
   public static void Main(String[] args) {
      SortedSet<int> set1 = new SortedSet<int>();
      set1.Add(200);
      set1.Add(215);
      set1.Add(310);
      set1.Add(500);
      set1.Add(600);
      Console.WriteLine("SortedSet elements...");
      foreach (int i in set1) {
         Console.WriteLine(i);
      }
      Console.WriteLine(" ");
      set1.RemoveWhere(demo);
      Console.WriteLine("SortedSet after removing some elements...");
      foreach (int i in set1) {
         Console.WriteLine(i);
      }
   }
}

आउटपुट

यह निम्नलिखित आउटपुट देगा -

SortedSet elements...
200
215
310
500
600
SortedSet after removing some elements...
215

उदाहरण

आइए एक और उदाहरण देखें -

using System;
using System.Collections.Generic;
public class Demo {
   private static bool demo(int i) {
      return (i == 500);
   }
   public static void Main(String[] args) {
      SortedSet<int> set1 = new SortedSet<int>();
      set1.Add(200);
      set1.Add(215);
      set1.Add(310);
      set1.Add(500);
      set1.Add(600);
      Console.WriteLine("SortedSet elements...");
      foreach (int i in set1) {
         Console.WriteLine(i);
      }
      Console.WriteLine(" ");
      set1.RemoveWhere(demo);
      Console.WriteLine("SortedSet after removing an element...");
      foreach (int i in set1) {
         Console.WriteLine(i);
      }
   }
}

आउटपुट

यह निम्नलिखित आउटपुट देगा -

SortedSet elements...
200
215
310
500
600
SortedSet after removing an element...
200
215
310
600

  1. सी # में हैशसेट से सभी तत्वों को हटा दें

    हैशसेट से सभी तत्वों को हटाने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections.Generic; public class Demo {    public static void Main(String[] args){       HashSet<string> set1 = new HashSet<string>();       set1.Add("

  1. सी # में विधेय द्वारा परिभाषित शर्तों से मेल खाने वाली सूची के सभी तत्वों को हटा दें

    विधेय द्वारा परिभाषित शर्तों से मेल खाने वाली सूची से सभी तत्वों को हटाने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections.Generic; public class Demo {    private static bool demo(int i){       return (i == 500);    }    public sta

  1. जांचें कि क्या किसी सरणी में ऐसे तत्व हैं जो सी # में निर्दिष्ट शर्तों से मेल खाते हैं

    यह जांचने के लिए कि क्या किसी सरणी में वे तत्व हैं जो विशिष्ट परिस्थितियों से मेल खाते हैं, हम C# में StartsWith() विधि का उपयोग कर सकते हैं - उदाहरण using System; public class Demo {    public static void Main(){       string[] products = { "Electronics", "Ac