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

mono — Runtime for the .NET Framework. More information: <https://www.mono-project.com/docs/>.

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

Problem

How to use the mono command: Runtime for the .NET Framework. More information: <https://www.mono-project.com/docs/>.

Solution

mono — Runtime for the .NET Framework. More information: <https://www.mono-project.com/docs/>.

Run a .NET assembly in debug mode:
mono --debug {{path/to/program.exe}}


Run a .NET assembly:
mono {{path/to/program.exe}}

Code Snippets

Run a .NET assembly in debug mode

mono --debug {{path/to/program.exe}}

Run a .NET assembly

mono {{path/to/program.exe}}

Context

tldr-pages: linux/mono

Revisions (0)

No revisions yet.