Forrest logo
back to context overview

monop

List of commands for monop:

  • monop:tldr:4ff5f monop: List the types in an assembly.
    $ monop -r:${path-to-assembly-exe}
    try on your machine
    explain this command
  • monop:tldr:96a2f monop: Only show members defined in the specified Type.
    $ monop -r:${path-to-assembly-dll} --only-declared ${Namespace-Path-To-Type}
    try on your machine
    explain this command
  • monop:tldr:9d00e monop: List the other assemblies that a specified assembly references.
    $ monop -r:${path-to-assembly-dll} --refs
    try on your machine
    explain this command
  • monop:tldr:9f141 monop: Show private members.
    $ monop -r:${path-to-assembly-dll} --private ${Namespace-Path-To-Type}
    try on your machine
    explain this command
  • monop:tldr:b5047 monop: Show the structure of a Type in a specific assembly.
    $ monop -r:${path-to-assembly-dll} ${Namespace-Path-To-Type}
    try on your machine
    explain this command
  • monop:tldr:be2c3 monop: Show the structure of a Type built-in of the .NET Framework.
    $ monop ${System-String}
    try on your machine
    explain this command
  • monop:tldr:de7a5 monop: Hide obsolete members.
    $ monop -r:${path-to-assembly-dll} --filter-obsolete ${Namespace-Path-To-Type}
    try on your machine
    explain this command
back to context overview