在VB中,可以使用Add方法向List中添加數據。
以下是一個示例:
Dim myList As New List(Of String)
' 向List中添加數據
myList.Add("數據1")
myList.Add("數據2")
myList.Add("數據3")
' 輸出List中的數據
For Each item As String In myList
Console.WriteLine(item)
Next
這將向List中添加三個字符串數據,并通過循環輸出每個數據項。