imports SystemModule IsWhiteSpaceSample Sub Main() Dim str As String str = "black matter" Console.WriteLine(Char.IsWhiteSpace("A"c)) Console.WriteLine(Char.IsWhiteSpace(str, 5)) End SubEnd Module