List.Add : List « System.Collections.Generic « VB.Net by API






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

   
    
    
  








Related examples in the same category