

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to sort a list of dictionaries by values of dictionaries in C#?
Set the list of dictionaries with keys and values.
var d = new Dictionary<string, int>(); d.Add("Zack", 0); d.Add("Akon", 3); d.Add("Jack", 2); d.Add("Tom", 1);
Get and sort the keys.
var val = d.Keys.ToList(); val.Sort();
You can try to run the following code to sort a list of dictionaries by values.
Example
using System; using System.Collections.Generic; using System.Linq; class Demo { static void Main() { var d = new Dictionary<string, int>(); d.Add("Zack", 0); d.Add("Akon", 3); d.Add("Jack", 2); d.Add("Tom", 1); // Acquire keys and sort them. var val = d.Keys.ToList(); val.Sort(); // Loop through keys. foreach (var key in val) { Console.WriteLine("{0}: {1}", key, d[key]); } } }
Output
Akon: 3 Jack: 2 Tom: 1 Zack: 0
- Related Questions & Answers
- Sort list of dictionaries by values in C#
- Ways to sort list of dictionaries by values in Python
- Ways to sort list of dictionaries by values in Python Using itemgetter
- Python program to Sort a List of Dictionaries by the Sum of their Values
- How do I sort a list of dictionaries by values of the dictionary in Python?
- Ways to sort list of dictionaries using values in python
- Ways to sort list of dictionaries by values in Python Using lambda function
- Python – Sort Dictionaries by Size
- Sort Python Dictionaries by Key or Value
- Python - Filter dictionaries by values in Kth Key in list
- Flatten given list of dictionaries in Python
- MongoDB Aggregate sum of values in a list of dictionaries for all documents?
- How to create a pandas DataFrame using a list of dictionaries?
- Append list of dictionaries to an existing Pandas DataFrame in Python
- Python Program to get all unique keys from a List of Dictionaries
Advertisements