KeyValuePairs संग्रह को सॉर्ट करने के लिए सॉर्ट विधि का उपयोग करें।
सबसे पहले, संग्रह सेट करें -
var myList = new List<KeyValuePair<int, int>>(); // adding elements myList.Add(new KeyValuePair<int, int>(1, 20)); myList.Add(new KeyValuePair<int, int>(2, 15)); myList.Add(new KeyValuePair<int, int>(3, 35)); myList.Add(new KeyValuePair<int, int>(4, 50)); myList.Add(new KeyValuePair<int, int>(5, 25));
सॉर्ट करने के लिए, सॉर्ट () विधि का उपयोग करें। इसके साथ, हमने मूल्यों की तुलना करने के लिए ComparTo () पद्धति का उपयोग किया है -
myList.Sort((x, y) => (y.Value.CompareTo(x.Value)));
निम्नलिखित पूरा कोड है -
उदाहरण
using System; using System.Collections.Generic; class Program { static void Main() { var myList = new List<KeyValuePair<int, int>>(); // adding elements myList.Add(new KeyValuePair<int, int>(1, 20)); myList.Add(new KeyValuePair<int, int>(2, 15)); myList.Add(new KeyValuePair<int, int>(3, 35)); myList.Add(new KeyValuePair<int, int>(4, 50)); myList.Add(new KeyValuePair<int, int>(5, 25)); Console.WriteLine("Unsorted List..."); foreach (var val in myList) { Console.WriteLine(val); } // Sort Value myList.Sort((x, y) => (y.Value.CompareTo(x.Value))); Console.WriteLine("Sorted List..."); foreach (var val in myList) { Console.WriteLine(val); } } }
आउटपुट
Unsorted List... [1, 20] [2, 15] [3, 35] [4, 50] [5, 25] Sorted List... [4, 50] [3, 35] [5, 25] [1, 20] [2, 15]