Skip to content

Instantly share code, notes, and snippets.

@NPS-ARCN-CAKN
Created April 5, 2018 18:02
Show Gist options
  • Save NPS-ARCN-CAKN/f3c82a772e0382bb6780544db367b029 to your computer and use it in GitHub Desktop.
Save NPS-ARCN-CAKN/f3c82a772e0382bb6780544db367b029 to your computer and use it in GitHub Desktop.
VB .Net: Loop through an Enum (SpecialFolders)
For Each SpecialFolder As String In System.Enum.GetNames(GetType(Environment.SpecialFolder))
Debug.Print(SpecialFolder)
Next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment