Skip to content

Instantly share code, notes, and snippets.

@turboBasic
Last active June 27, 2018 12:22
Show Gist options
  • Save turboBasic/5a5ce74dfd755384da20f74f2216b882 to your computer and use it in GitHub Desktop.
Save turboBasic/5a5ce74dfd755384da20f74f2216b882 to your computer and use it in GitHub Desktop.
[Get-dotNetCultures.ps1] Gets the list of .Net cultures #powershell #.Net
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