1

How do I check whether my application has been started with mono (mono MyProgram.exe) or if it has been bundled with the mono runtime embedded using mkbundle or similar?

PhonicUK
  • 13,486
  • 4
  • 43
  • 62

1 Answers1

2
IsBundled = (typeof(int).Assembly.Location == "mscorlib.dll");
PhonicUK
  • 13,486
  • 4
  • 43
  • 62