Data Types VB.Net

Imports System
Module IsSeparatorSample
    Sub Main()
        Dim str As String
        str = "this is a test"
        Console.WriteLine(Char.IsSeparator(str, 6))     
    End Sub
End Module