Skip to content

Instantly share code, notes, and snippets.

@jonschoning
Created August 16, 2011 14:33
Show Gist options
  • Save jonschoning/1149220 to your computer and use it in GitHub Desktop.
Save jonschoning/1149220 to your computer and use it in GitHub Desktop.
TypeHelpers.ps1
function Get-Type() { [AppDomain]::CurrentDomain.GetAssemblies() | % { $_.GetTypes() }}
function Get-MSDNInfo([Type]$t) { (New-Object –com Shell.Application).Open(“http://msdn.microsoft.com/$(Get-Culture)/library/$($t.FullName).aspx” ) }
function Show-ClassInfo([Type]$t) { Get-Member –input (New-Object $t.FullName $args) | Out-Gridview}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment