Possible Duplicate:
How can I conditionally compile my C# for Mono vs. Microsoft .NET?
I have sqlite in my project and I'd like to run it in mono. The code is exactly the same for mono and nonmono however mono needs me to include a different namespace. Does mono have a predefined macro? Right now i define USE_MONO. Is there an official definition i can use?
#if USE_MONO
using Mono.Data.Sqlite;
#else
using System.Data.SQLite;
#endif