Path.GetInvalidFileNameChars() : Path « System.IO « VB.Net by API






Path.GetInvalidFileNameChars()

  
Imports System
Imports System.IO
Imports System.Windows.Forms

Public Class MainClass

   Shared Sub Main()
        For Each ch As Char In Path.GetInvalidFileNameChars()
            Console.Write(ch & " ")
        Next ch
   End Sub 
End Class

   
    
  








Related examples in the same category

1.Path.AltDirectorySeparatorChar
2.Path.DirectorySeparatorChar
3.Path.GetDirectoryName
4.Path.GetExtension
5.Path.GetFileName
6.Path.GetFileNameWithoutExtension
7.Path.GetFullPath
8.Path.GetInvalidPathChars
9.Path.GetPathRoot
10.Path.VolumeSeparatorChar