Path Separator and Volume Separator Char
Imports System.IO
Module Module1
Sub Main()
Console.WriteLine("Path Separator {0}", Path.PathSeparator)
Console.WriteLine("Volume Separator {0}", Path.VolumeSeparatorChar)
End Sub
End Module
Related examples in the same category