Home > Software engineering >  Consult the List of VB.NET using method.
Consult the List of VB.NET using method.

Time:05-08

Fellow teachers, I use two methods for programming, can't get the right result,
The first method:
Structure aa
Public la () As Single
End Structure
Dim b (10) As Single
Private Sub ListToolStripMenuItem_Click (sender As Object, As EventArgs e) Handles ListToolStripMenuItem. Click
Dim a1 As aa=New aa
Dim lla As List (Of aa)=New List (Of aa)
A1. La=b
For I=0 To 10
For j=0 To 10
A1. La (j)=I * math.h PI + j
Next
Next
Lla. Add (a1)
MsgBox (lla. Item (0). La (1) & amp; VbLf & amp; Lla. Item (5). La (1))
End Sub
The second method:
Structure aa
Public la () As Single
End Structure
Dim b (10) As Single
Private Sub ListToolStripMenuItem_Click (sender As Object, As EventArgs e) Handles ListToolStripMenuItem. Click
Dim a1 As aa=New aa
Dim lla As List (Of aa)=New List (Of aa)
A1. La=b
For I=0 To 10
Lla. Add (a1)
Next
For I=0 To 10
For j=0 To 10
Lla. Item (I). La (j)=I * math.h PI + j
Next
Next
Lla. Add (a1)
MsgBox (lla. Item (0). La (1) & amp; VbLf & amp; Lla. Item (5). La (1))
End Sub
Code can run normally, but just can't get the results I hope, where is the mistake
  • Related