是否有可能在asp.net c#中使用另一個變量引用變量/數組? EG。在變量中使用asp.net c存儲變量名稱#
alfaromeo = new string[] {"lots of stuff"};
astonmartin = new string[] {"lots of stuff"};
audi = new string[] {"lots of stuff"};
bentley = new string[] {"lots of stuff"};
bmw = new string[] {"lots of stuff"};
etc
string targetArray = "audi";
for(int i=0; i<targetArray.Length; i++){
// do stuff with tha array
}
有一個原因,數組都被稱爲不同的名稱,我沒有使用多維數組來引用它們。
可以這樣做,還是我需要使用某種查找數組引用它們?
在此先感謝。
'串targetArray =「audi」;'這是一個'字符串'還是'字符串[]'? – Marco 2014-10-27 10:01:59
一個字符串。這將是一個剛剛存儲我想要使用的數組名稱的地方,除非您看到比我更合乎邏輯的事情。這是非常可能的:) – 2014-10-27 10:04:27