Does anyone know how to determine what platform your c# code is running on e.g. whether it is running on linux or windows so that I can execute different code at runtime.
I have a c# windows app that I want to build to target windows and linux platforms.
So far I have created 2 project files pointing to the same set of source code files. I then use a conditional compilation statement one of the projects called LINUX.
Where there are difference in the actual code I use coditional statements using the conditional compilation statement, e.g
#if (LINUX)
' do something
#endif
Is there a better way of doing this? I don't really want to have 2 project files.
Thanks in advance.