让我们有一个名为“ClassA”的类,并让我们有以下代码:
...
ClassA[,] all = new ClassA[8,8];
...
//Array "all" is filled with objects
...
List<ClassA> some = new List<ClassA>();
...
//List "some" is filled with some objects taken from all
...
List<ClassA> others = new List<ClassA>();
现在我想知道“all”和“some”之间的区别,例如:other = all - some