我只想在 c# 中获得一个 List 的二维数组。在我看来,下面应该有效,但它没有, List 的一维数组有效。我将 Unity3D 与 Mono 一起使用,但我认为这是与语言相关的问题。
List<MyType>[,] twoDArrayofList;//don't work, it's type is List<MyType>
List<MyType>[] oneDArrayofList;//it's works, the type is List<MyType>
有谁知道怎么了?谢谢你。