Is there a way to identify in which OS we are running mono, with C# code?
Some sort of Hello World, but instead of using a fixed string as an output use the current OS?
|
|
|
|
|
|
|
Try You can also detect if your code is run under Mono or MS.NET:
|
||
|
|
This link: http://mono-project.com/FAQ:_Technical#How_to_detect_the_execution_platform_.3F Give this code: using System;
|
||
|
|