2016-01-21 54 views

回答

1
string[,,] strArray = new string[3,3,3]; 
strArray[1,1,1] = "test"; 
strArray[0,0,1] = "World"; 
strArray[0,0,0] = "Hello"; 

IIRC