how to use array in vb.net

Posted by Shanky11 under VB.NET on 3/25/2013 | Points: 10 | Views : 2487 | Status : [Member] | Replies : 0
Dim aaray1() As String = New String() {"shankar", "mishra"}
ResultListBox1.Items.Add("The First Index of Array is " & aaray(1))
ReDim aaray1(1)
aaray1(0) = "chennai"
aaray1(1) = "Delhi"
ResultListBox1.Items.Add(" Array is " & aaray1(1))


tell me why this is not printing in Delhi




Responses

(No response found.)

Login to post response