what is the difference between both of the below declarations ?
private string[][] a = new string[0][];
private string[,] b = new string[0, 0];
what is the difference between both of the below declarations ?
private string[][] a = new string[0][];
private string[,] b = new string[0, 0];