c# 陣列 四種宣告方式

摘要:c# 陣列 四種宣告方式

int[] iarray = new int[50];
        
int[] lottery = new int[7] { 4, 5, 6, 7, 8, 9, 10 };
       
string[] sName = new string[] { "chris" , "allen"};
        
string[] sStudent = { "chris", "davin" };