Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以理解后者的使用。你能解释一下以下逗号的用法吗?
private WaveGestureTracker[,] _PlayerWaveTracker = new WaveGestureTracker[6, 2];
WaveGestureTracker[,]表示 的二维数组WaveGestureTracker,[6,2]最后将数组的大小设置为6x2。
WaveGestureTracker[,]
WaveGestureTracker
[6,2]
查看 MSDN 文章:多维数组