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

Dictionary.Values ​​संपत्ति सी # में

Dictionary.Values ​​गुण C# में डिक्शनरी में सभी मानों को लाने के लिए उपयोग किया जाता है।

सिंटैक्स

निम्नलिखित वाक्य रचना है -

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 विंडो पृष्ठXOffset संपत्ति

    HTML विंडो पेजXOffset प्रॉपर्टी पिक्सेल में मान लौटाती है, वर्तमान दस्तावेज़ को बाएं कोने से क्षैतिज रूप से स्क्रॉल किया गया है। सिंटैक्स निम्नलिखित वाक्य रचना है - window.pageXOffset आइए हम HTML विंडो पेज XOffset संपत्ति का एक उदाहरण देखें - उदाहरण <!DOCTYPE html> <html> <style>

  1. HTML विंडो पृष्ठYOffset संपत्ति

    HTML विंडो पेजYoffset प्रॉपर्टी पिक्सेल में मान लौटाती है, वर्तमान दस्तावेज़ को बाएं कोने से लंबवत स्क्रॉल किया गया है। सिंटैक्स निम्नलिखित वाक्य रचना है - window.pageYOffset आइए हम HTML विंडो पेजYOffset संपत्ति का एक उदाहरण देखें - उदाहरण <!DOCTYPE html> <html> <style>   &n

  1. एचटीएमएल डोम मूल्य संपत्ति

    HTML DOM मान गुण किसी तत्व की विशेषता के मान के अनुरूप स्ट्रिंग लौटाता है। निम्नलिखित वाक्य रचना है - रिटर्निंग स्ट्रिंग मान elementAttribute.value आइए HTML DOM मान का एक उदाहरण देखें संपत्ति - उदाहरण <!DOCTYPE html> <html> <head> <title>HTML DOM value</title> <st