C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#のSortedDictionary.ContainsValue()メソッド


C#のSortedDictionary.ContainsValue()メソッドは、SortedDictionary に指定された値の要素が含まれているかどうかを判断するために使用されます。

構文

構文は次のとおりです-

public bool ContainsValue (TValue val);

上記の値valは、SortedDictionary で検索される値です。

例を見てみましょう-

using System;
using System.Collections;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      SortedDictionary<int, string> sortedDict = new SortedDictionary<int, string>();
      sortedDict.Add(100, "Inspiron");
      sortedDict.Add(200, "Alienware");
      sortedDict.Add(300, "Projectors");
      sortedDict.Add(400, "XPS");
      Console.WriteLine("SortedDictionary key-value pairs...");
      IDictionaryEnumerator demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
      Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      Console.WriteLine("Count of SortedDictionary key-value pairs = "+sortedDict.Count);
      sortedDict.Add(800, "Notebook");
      sortedDict.Add(10000, "Bluetooth Speaker");
      Console.WriteLine("\nSortedDictionary key-value pairs...UPDATED");
      demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
      Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      Console.WriteLine("Count of SortedDictionary key-value pairs (UPDATED) = "+sortedDict.Count);
      Console.WriteLine("Is the value in the SortedDictionary key-value pairs = "+sortedDict.ContainsValue("Notebook"));
      sortedDict.Clear();
      Console.WriteLine("\nCount of SortedDictionary key-value pairs (UPDATED) = "+sortedDict.Count);
   }
}

出力

これにより、次の出力が生成されます-

SortedDictionary key-value pairs...
Key = 100, Value = Inspiron
Key = 200, Value = Alienware
Key = 300, Value = Projectors
Key = 400, Value = XPS
Count of SortedDictionary key-value pairs = 4
SortedDictionary key-value pairs...UPDATED
Key = 100, Value = Inspiron
Key = 200, Value = Alienware
Key = 300, Value = Projectors
Key = 400, Value = XPS
Key = 800, Value = Notebook
Key = 10000, Value = Bluetooth Speaker
Count of SortedDictionary key-value pairs (UPDATED) = 6
Is the value in the SortedDictionary key-value pairs = True
Count of SortedDictionary key-value pairs (UPDATED) = 0

別の例を見てみましょう-

using System;
using System.Collections;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      SortedDictionary<int, string> sortedDict = new SortedDictionary<int, string>();
      sortedDict.Add(1, "One");
      sortedDict.Add(2, "Two");
      sortedDict.Add(3, "Three");
      sortedDict.Add(4, "Four");
      sortedDict.Add(5, "Five");
      sortedDict.Add(6, "Six");
      Console.WriteLine("SortedDictionary key-value pairs...");
      IDictionaryEnumerator demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
      Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      Console.WriteLine("Count of SortedDictionary key-value pairs = "+sortedDict.Count);
      sortedDict.Add(7, "Seven");
      sortedDict.Add(8, "Eight");
      Console.WriteLine("\nSortedDictionary key-value pairs...UPDATED");
      demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
      Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      Console.WriteLine("Count of SortedDictionary key-value pairs (UPDATED) = "+sortedDict.Count);
      Console.WriteLine("Is the value in the SortedDictionary key-value pairs = "+sortedDict.ContainsValue("Eleven"));
      sortedDict.Clear();
      Console.WriteLine("\nCount of SortedDictionary key-value pairs (UPDATED) = "+sortedDict.Count);
   }
}

出力

これにより、次の出力が生成されます-

SortedDictionary key-value pairs...
Key = 1, Value = One
Key = 2, Value = Two
Key = 3, Value = Three
Key = 4, Value = Four
Key = 5, Value = Five
Key = 6, Value = Six
Count of SortedDictionary key-value pairs = 6
SortedDictionary key-value pairs...UPDATED
Key = 1, Value = One
Key = 2, Value = Two
Key = 3, Value = Three
Key = 4, Value = Four
Key = 5, Value = Five
Key = 6, Value = Six
Key = 7, Value = Seven
Key = 8, Value = Eight
Count of SortedDictionary key-value pairs (UPDATED) = 8
Is the value in the SortedDictionary key-value pairs = False
Count of SortedDictionary key-value pairs (UPDATED) = 0

  1. C#のDictionary.ContainsValue()メソッド

    C#のDictionary.ContainsValue()メソッドは、Dictionary に特定の値が含まれているかどうかを確認するために使用されます。 構文 public bool ContainsValue (TValue val); 上記のValは検索する値です。 ここで、Dictionary.ContainsValue()メソッドを実装する例を見てみましょう- 例 using System; using System.Collections.Generic; public class Demo {    public static void Main(){ &

  2. C#のConvert.ToDoubleメソッド

    指定された値を倍精度浮動小数点数に変換するには、Convert.ToDouble()メソッドを使用します。 以下は私たちの長い値です- long[] val = { 340, -200}; 次に、Doubleに変換します。 double result; result = Convert.ToDouble(val); 例 using System; public class Demo {    public static void Main() {       long[] val = { 340, -200};