要刪除 list 中選中的內容,可以使用 Remove 方法。Remove 方法需要傳入要刪除的元素作為參數。
以下是一個示例代碼:
' 創建一個 List
Dim myList As New List(Of String)
myList.Add("apple")
myList.Add("banana")
myList.Add("orange")
' 輸出當前 List 的內容
Console.WriteLine("當前 List 的內容:")
For Each item As String In myList
Console.WriteLine(item)
Next
' 用戶選擇要刪除的元素的索引
Console.Write("請選擇要刪除的元素的索引:")
Dim index As Integer = CInt(Console.ReadLine())
' 刪除選中的元素
myList.RemoveAt(index)
' 輸出刪除后的 List 的內容
Console.WriteLine("刪除后的 List 的內容:")
For Each item As String In myList
Console.WriteLine(item)
Next
在以上示例中,用戶需要輸入要刪除元素的索引,然后使用 RemoveAt 方法刪除該元素。最后,輸出刪除后的 List 的內容。