Answers for "c# list to dictionary"

C#
1

c# dictionary values to list

var items = myDictionary.Values.ToList();

//Use Linq if you want to flattern your lists
var items = myDictionary.SelectMany (d => d.Value).ToList();
Posted by: Guest on July-03-2021
1

dictionary to list c#

Dictionary<string, string> dicNumber = new Dictionary<string, string>();
List<string> listNumber = new List<string>();

dicNumber.Add("1", "First");
dicNumber.Add("2", "Second");
dicNumber.Add("3", "Third");

listNumber = dicNumber.Select(kvp => kvp.Key).ToList();
// Or:
listNumber = dicNumber.Keys.ToList();
Posted by: Guest on August-17-2021
0

convert list of tuples to dictionary c#

IList<Tuple<long, int>> applyOnTree;
applyOnTree.ToDictionary(x => x.Item1, x => x.Item2);
Posted by: Guest on September-29-2020
0

how to create dictionary of list in c#

public static void Main()
        {
            Dictionary<String, List<string>> dic = new Dictionary<string, List<string>>();

            List<string> li1 = new List<string>();
            li1.Add("text1"); li1.Add("text2"); li1.Add("text3"); li1.Add("text4");

            List<string> li2 = new List<string>();
            li2.Add("text1"); li2.Add("text2"); li2.Add("text3"); li2.Add("text4");

            dic["1"] = li1;
            dic["2"] = li2;


            foreach (string key in dic.Keys)
            {
                foreach (string val in dic[key])
                {
                    Console.WriteLine(val);
                }
            }
        }
Posted by: Guest on October-06-2020

C# Answers by Framework

Browse Popular Code Answers by Language