VB.NET & ArrayList.IndexOf() - ArrayList.IndexOf() : Returns the zero-based index of the first occurrence of a value in the ArrayList or in a portion of it.
ShotDev Focus:
- VB.NET & ArrayList.IndexOf()
Example
AspNetArrayListIndexOf.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.IndexOf("yellow") 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