Wednesday, November 11, 2009

ASP.NET กับ ArrayList() 2 มิติ

การใช้ ArrayList() แบบสองมิติ

'ตัวอย่างการใช้ ARRAY 2 มิติ
Dim ArrayTest As 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"})

For Each item As Object In ArrayTest
Dim ItemArray As String() = DirectCast(item, String())
Response.Write(ItemArray(1) & "" & ItemArray(2))
Next

No comments:

Post a Comment

แวะเข้ามา ทักทายกันบ้างก็ได้ค่ะ