Environment.GetFolderPath (Environment.SpecialFolder) : Environment « Development « VB.Net
- VB.Net
- Development
- Environment
Environment.GetFolderPath (Environment.SpecialFolder)
Imports System
Class Sample
Public Shared Sub Main()
Console.WriteLine("GetFolderPath: {0}", Environment.GetFolderPath(Environment.SpecialFolder.System))
End Sub 'Main
End Class 'Sample
Related examples in the same category