SortedList<int, string> months = new SortedList<int, string>();
SortedList<int, SortedList> all = new SortedList<int, SortedList>();
我想创建一个 SortedList ,其中包含另一个“月份”类型的排序列表,如上面的代码片段所示。
months.Add(1, "January");
all.Add(2012,months);
我得到错误
无法从“System.Collections.Generic.SortedList”转换为“System.Collections.SortedList”
我迷茫...