Last active
June 27, 2018 12:22
-
-
Save turboBasic/5a5ce74dfd755384da20f74f2216b882 to your computer and use it in GitHub Desktop.
[Get-dotNetCultures.ps1] Gets the list of .Net cultures #powershell #.Net
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-dotNetCultures | |
{ | |
[Globalization.CultureInfo]::GetCultures( | |
[Globalization.CultureTypes]::AllCultures -as [uint32] -band | |
-bnot ( | |
[Globalization.CultureTypes]::NeutralCultures | |
) | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment