On 12/01/06 Bouk, Nathan wrote: > It's more an issue of managing compiling and changing the type name from > TreeView to TreeViewWithPaint depending on the system. Under C/C++ I > could probably use a preprocessor #ifdef _WIN32 to deal with it, but how > do I deal with that under .NET/Mono?
You should do this with a runtime check, not with a preprocessor, so that your code will run unchanged on both platforms. lupus -- ----------------------------------------------------------------- [EMAIL PROTECTED] debian/rules [EMAIL PROTECTED] Monkeys do it better _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
