如何在.NET中创建通用三维集合

时间:2015-04-08 18:48:19

标签: .net generics collections generic-collections

我正在尝试创建或使用行为类似字典的框架对象,但有两个键值来确定第三个。 .NET中是否有内置的三维集合?

简单的例子: 我需要提供一张表,按学生和班级分列最终成绩。

1 个答案:

答案 0 :(得分:0)

试试这个:

Dictionary<clsStudent, Dictionary<clsClass,clsGrade>> dic = new Dictionary<clsStudent, Dictionary<clsClass,clsGrade>>();