HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

monop — Finds and displays signatures of Types and methods inside .NET assemblies. More information: <https:

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandandfindsclisignaturesmonoptypesdisplays

Problem

How to use the monop command: Finds and displays signatures of Types and methods inside .NET assemblies. More information: <https://manned.org/monop>.

Solution

monop — Finds and displays signatures of Types and methods inside .NET assemblies. More information: <https://manned.org/monop>.

Show the structure of a Type built-in of the .NET Framework:
monop {{System.String}}


List the types in an assembly:
monop -r:{{path/to/assembly.exe}}


Show the structure of a Type in a specific assembly:
monop -r:{{path/to/assembly.dll}} {{Namespace.Path.To.Type}}


Only show members defined in the specified Type:
monop -r:{{path/to/assembly.dll}} {{[-d|--declared-only]}} {{Namespace.Path.To.Type}}


Show private members:
monop -r:{{path/to/assembly.dll}} {{[-p|--private]}} {{Namespace.Path.To.Type}}


Hide obsolete members:
monop -r:{{path/to/assembly.dll}} {{[-f|--filter-obsolete]}} {{Namespace.Path.To.Type}}


List the other assemblies that a specified assembly references:
monop -r:{{path/to/assembly.dll}} --refs

Code Snippets

Show the structure of a Type built-in of the .NET Framework

monop {{System.String}}

List the types in an assembly

monop -r:{{path/to/assembly.exe}}

Show the structure of a Type in a specific assembly

monop -r:{{path/to/assembly.dll}} {{Namespace.Path.To.Type}}

Only show members defined in the specified Type

monop -r:{{path/to/assembly.dll}} {{[-d|--declared-only]}} {{Namespace.Path.To.Type}}

Show private members

monop -r:{{path/to/assembly.dll}} {{[-p|--private]}} {{Namespace.Path.To.Type}}

Context

tldr-pages: common/monop

Revisions (0)

No revisions yet.