标签: c# .net arrays declaration
以下两个声明之间有什么区别?
private string[][] a = new string[0][]; private string[,] b = new string[0, 0];