string[] temp=new string[arrNum];
temp[0]="sdfa";
temp[1]="fsf";
Application["ModuleArr"]=temp;
取得时候可以用:
string[] x=(string[])Application["ModuleArr"]
string[] temp=new string[arrNum];
temp[0]="sdfa";
temp[1]="fsf";
Application["ModuleArr"]=temp;
取得时候可以用:
string[] x=(string[])Application["ModuleArr"]
相关文章: