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

C#のDictionary.Valuesプロパティ


C#のDictionary.Valuesプロパティは、ディクショナリ内のすべての値をフェッチするために使用されます。

構文

以下は構文です-

public System.Collections.Generic.Dictionary<TKey, TValue>.KeyCollection Values{ get; }

ここで、Dictionary.Valuesプロパティを実装する例を見てみましょう-

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      Dictionary<string, string> dict = new Dictionary<string, string>();
      dict.Add("One", "Kagido");
      dict.Add("Two", "Ngidi");
      dict.Add("Three", "Devillers");
      dict.Add("Four", "Smith");
      dict.Add("Five", "Warner");
      Console.WriteLine("Count of elements = "+dict.Count);
      Console.WriteLine("\nKey/value pairs...");
      foreach(KeyValuePair<string, string> res in dict){
         Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value);
      }
      Console.Write("\nAll the values..\n");
      Dictionary<string, string>.ValueCollection allValues=
      dict.Values;
      foreach(string str in allValues){
         Console.WriteLine("Value = {0}", str);
      }
   }
}

出力

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

Count of elements = 5
Key/value pairs...
Key = One, Value = Kagido
Key = Two, Value = Ngidi
Key = Three, Value = Devillers
Key = Four, Value = Smith
Key = Five, Value = Warner
All the values..
Value = Kagido
Value = Ngidi
Value = Devillers
Value = Smith
Value = Warner

Dictionary.Valuesプロパティを実装する別の例を見てみましょう-

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      Dictionary<int, string> dict = new Dictionary<int, string>();
      dict.Add(1, "Kagido");
      dict.Add(2, "Ngidi");
      dict.Add(3, "Devillers");
      Console.WriteLine("Count of elements = "+dict.Count);
      Console.WriteLine("\nKey/value pairs...");
      foreach(KeyValuePair<int, string> res in dict){
         Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value);
      }
      Console.Write("\nAll the values..\n");
      Dictionary<int, string>.ValueCollection allValues= dict.Values;
      foreach(string str in allValues){
         Console.WriteLine("Value = {0}", str);
      }
   }
}

出力

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

Count of elements = 3
Key/value pairs...
Key = 1, Value = Kagido
Key = 2, Value = Ngidi
Key = 3, Value = Devillers
All the values..
Value = Kagido
Value = Ngidi
Value = Devillers

  1. HTMLウィンドウのpageYOffsetプロパティ

    HTMLウィンドウのpageYOffsetプロパティは、現在のドキュメントが左隅から垂直方向にスクロールされたピクセル単位の値を返します。 構文 以下は構文です- window.pageYOffset HTMLウィンドウのpageYOffsetプロパティの例を見てみましょう- 例 <!DOCTYPE html> <html> <style>    body {       color: #000;       height: 100vh;     &nbs

  2. HTMLDOM値プロパティ

    HTML DOM valueプロパティは、要素の属性の値に対応する文字列を返します。 以下は構文です- 文字列値を返す elementAttribute.value HTMLDOM値の例を見てみましょう プロパティ- 例 <!DOCTYPE html> <html> <head> <title>HTML DOM value</title> <style>    * {       padding: 2px;       margin:5p