This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// String arrays 三種宣告方式: | |
string[] arr1 = new string[] { "1", "2", "3" }; | |
string[] arr2 = { "1", "2", "3" }; //匿名 | |
var arr3 = new string[] { "1", "2", "3" }; | |
string[] arr4 = new string[3]; | |
arr4[0] = "1"; | |
arr4[1] = "2"; | |
arr4[2] = "3"; |