Answers for "c# dictionary with dictionary as value"

C#
0

c# dictionary with dictionary as value

var collection = new Dictionary<string, Dictionary<string, int>>();
collection.Add("some key", new Dictionary<string, int>());
collection["some key"].Add("inner key", 0);
Posted by: Guest on October-19-2021

Code answers related to "c# dictionary with dictionary as value"

C# Answers by Framework

Browse Popular Code Answers by Language