Options (3)
-d, --declared-onlybooleanOnly show members defined in the specified Type
Example:
monop -r:{{path/to/assembly.dll}} {{[-d|--declared-only]}} {{Namespace.Path.To.Type}}-p, --privatebooleanShow private members
Example:
monop -r:{{path/to/assembly.dll}} {{[-p|--private]}} {{Namespace.Path.To.Type}}-f, --filter-obsoletebooleanHide obsolete members
Example:
monop -r:{{path/to/assembly.dll}} {{[-f|--filter-obsolete]}} {{Namespace.Path.To.Type}}Examples (7)
Show the structure of a Type built-in of the .NET Framework
monop System.StringList the types in an assembly
monop -r:path/to/assembly.exeShow the structure of a Type in a specific assembly
monop -r:path/to/assembly.dll Namespace.Path.To.TypeOnly show members defined in the specified Type
monop -r:path/to/assembly.dll [-d|--declared-only] Namespace.Path.To.TypeShow private members
monop -r:path/to/assembly.dll [-p|--private] Namespace.Path.To.TypeHide obsolete members
monop -r:path/to/assembly.dll [-f|--filter-obsolete] Namespace.Path.To.TypeList the other assemblies that a specified assembly references
monop -r:path/to/assembly.dll --refsmade by @shridhargupta | data from tldr-pages