[.net] what do /clr:pure and /clr:oldsyntax mean?

Started by
1 comment, last by NeoJigglypuff 17 years, 1 month ago
Am I right to think that /clr:pure means pure managed code and the other one is for mixed managed and unmanaged code? Do I get to set them using the vs 2005's configuration property?
Advertisement
I believe you're correct regarding /clr:pure, although someone else may want to clarify/provide additional info.

Regarding /clr:oldSyntax, there are two syntaxes for C++ and managed code. The old syntax was released with .NET 1.x while the new one came with .NET 2.0. This page has a guide on porting from the old syntax to the new syntax, and should give you a general idea of the differences.

Thanks for the link, mutex.

This topic is closed to new replies.

Advertisement