VB.Net by API/System.Collections.Generic/List — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 16:40, 26 мая 2010
List.Add
Imports System
Imports System.Collections
Imports System.Collections.Generic
Public Class MainClass
Shared Sub Main(ByVal args As String())
Dim places As New List(Of String)
places.Add("A")
places.Add("B")
places.Add("C")
places.Add("D")
End Sub
End Class