In C # how to initialize
int[][] test;
Instead, I do not want to use int[,]. I ask specifically how to initialize above. Obvious = int[1][1]does not work. I tried several different ways with no luck, and [] [], unfortunately, may not be available for Google (if this is not possible !?)
user34537
source
share