monop
Finds and displays signatures of Types and methods inside .NET assemblies. More information: <https://manned.org/monop>.
Install
- All systems
-
curl cmd.cat/monop.sh
- Debian
-
apt-get install mono-devel
- Ubuntu
-
apt-get install mono-devel
- Arch Linux
-
pacman -S mono
- Kali Linux
-
apt-get install mono-devel
- Fedora
-
dnf install mono-devel
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install mono-devel
- OS X
-
brew install mono
- Raspbian
-
apt-get install mono-devel
- Dockerfile
- dockerfile.run/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
© tl;dr; authors and contributors