After reading the question How can I conditionally compile my C# for Mono vs. Microsoft .NET? and seeing this great answer
I was wondering if there is a way to compile using both sqlite for .NET and monos version. On windows I shouldnt require monos lib to exist and on mono systems/runtime i should only need monos reference. The next part is in code i am using namespace System.Data.SQLite
OR Mono.Data.Sqlite
I cant do both because of name and class collision.
I'm unsure what to do. Maybe i should use monos version but than I don't want to find out the hardware if i must use the mono runtime for that reference (which has a fair chance of being required). How do i use SQLite in a way that runs on windows and on mono?