split to list vb.net

To split a string in VB.NET and convert it into a list, you can use the Split function. Here's an example:

Dim inputString As String = "Language: BASIC"
Dim stringList As List(Of String) = inputString.Split(":").ToList()

In this example, the Split function is used to split the inputString at the colon (":") delimiter. The resulting substrings are then converted into a list using the ToList method.

Please note that the above code assumes that you have already imported the necessary namespaces for working with lists and strings in VB.NET.