Types/Posh.NET/get_Private.ps1

<#
.SYNOPSIS
    Gets private types
.DESCRIPTION
    Gets all currently loaded private types
.EXAMPLE
    $Posh.Net.Private
#>

foreach ($type in $this.Type) {
    if ($type.IsNotPublic) {
        $type
    }
}