मार्क ग्रेवेल का जवाब आपके लिए काम करना चाहिए। myDictionary.Keys
एक वस्तु देता है जो लागू करता है ICollection<TKey>
, IEnumerable<TKey>
और उनके गैर-सामान्य समकक्ष।
मैं बस यह जोड़ना चाहता था कि यदि आप मूल्य के साथ-साथ पहुँच की योजना बनाते हैं, तो आप इस तरह से शब्दकोश के माध्यम से लूप कर सकते हैं (संशोधित उदाहरण):
Dictionary<string, int> data = new Dictionary<string, int>();
data.Add("abc", 123);
data.Add("def", 456);
foreach (KeyValuePair<string, int> item in data)
{
Console.WriteLine(item.Key + ": " + item.Value);
}