web 2.0

VB.NET & ArrayList and GetValue

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

 VB.NET & ArrayList & GetValue
.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (No Ratings Yet)
Loading ... Loading ...

One Response to “VB.NET & ArrayList and GetValue”

  1. 1focuses…

Leave a Reply

You must be logged in to post a comment.