can someone show a best way to check which on system app is runing ? (mono - dotnet).

is there a way to use sth like that :
Code:
#if(MONO)
using Mono.Something.Something
#else
using System.Something.Something
how to define that MONO ?

thanks