ASP里头的SPLIT函数在VB .NET里如何使用? 急

ASP里头的SPLIT函数在VB .NET里怎么使用???? 急急急急急急急
ASP里头的SPLIT函数在VB   .NET里怎么使用????

------解决方案--------------------
Dim str As String = "255.255.255.0 "
Dim var() As String = str.Split( ". ")
MsgBox(var.Length.ToString)
MsgBox(var(0).ToString)