mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
monop: add page (#2568)
This commit is contained in:
parent
0372f087b8
commit
d1fa3ec7f1
1 changed files with 31 additions and 0 deletions
31
pages/common/monop.md
Normal file
31
pages/common/monop.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
# monop
|
||||
|
||||
> Finds and displays signatures of Types and methods inside .NET assemblies.
|
||||
|
||||
- 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}} --only-declared {{Namespace.Path.To.Type}}`
|
||||
|
||||
- Show private members:
|
||||
|
||||
`monop -r:{{path/to/assembly.dll}} --private {{Namespace.Path.To.Type}}`
|
||||
|
||||
- Hide obsolete members:
|
||||
|
||||
`monop -r:{{path/to/assembly.dll}} --filter-obsolete {{Namespace.Path.To.Type}}`
|
||||
|
||||
- List the other assemblies that a specified assembly references:
|
||||
|
||||
`monop -r:{{path/to/assembly.dll}} --refs`
|
Loading…
Add table
Reference in a new issue