|
|
|
Array list สามารถใส่ค่าเข้าไปพร้อมกันสองค่าได้ไหมครับ |
|
|
|
|
|
|
|
สร้าง struct
แล้วค่อยสร้าง array ของ struct
|
|
|
|
|
Date :
2012-07-26 13:56:53 |
By :
อิอิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบนี้หรือเปล่าครับ
Code (C#)
ArrayList ArrayTest = new ArrayList();
ArrayTest.Add(new string[] {
"1",
"Red"
});
ArrayTest.Add(new string[] {
"2",
"Green"
});
ArrayTest.Add(new string[] {
"3",
"Blue"
});
ArrayTest.Add(new string[] {
"4",
"Black"
});
foreach (object item in ArrayTest) {
string[] ItemArray = (string[])item;
Response.Write(ItemArray[1] + "" + ItemArray[2]);
}
|
|
|
|
|
Date :
2012-07-26 21:32:20 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-07-27 11:27:52 |
By :
KT-Revenue |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|