Answers for "c# dictionary sorted"

C#
1

how to sort a dictionary by value in c#

Dictionary<string, int> myDict = new Dictionary<string, int>();
myDict.Add("one", 1);
myDict.Add("four", 4);
myDict.Add("two", 2);
myDict.Add("three", 3);

var sortedDict = from entry in myDict orderby entry.Value ascending select entry;
Posted by: Guest on August-14-2021
0

C# order a sorted list by key

SortedList<string,bool> l = new SortedList<string, bool>();
        l.Add("a", true);
        l.Add("b", false);
        l.Add("c", true);
        l.Add("d", false);
        var orderByVal = l.OrderBy(kvp => kvp.Key);
Posted by: Guest on February-13-2021

Code answers related to "c# dictionary sorted"

C# Answers by Framework

Browse Popular Code Answers by Language