VB.NET & ArrayList and GetValue - ArrayList & GetValue() : Gets value the element at the specified index.
ShotDev Focus:
- VB.NET & ArrayList and GetValue()
Example
AspNetArrayListGetValue.aspx
<%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Dim objArrList As ArrayList Dim i As Integer objArrList = New ArrayList objArrList.Add("white") objArrList.Add("black") objArrList.Add("red") objArrList.Add("yellow") objArrList.Add("green") Me.lblText.Text = objArrList(3).ToString() End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form id="form1" runat="server"> <asp:Label id="lblText" runat="server"></asp:Label> </form> </body> </html>
Screenshot
1focuses…
…