Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

37
monop Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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}} --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`