R
RC
Is there a built-in constant that I can use in a #if statement to
conditonally compile a line of code based on the CLR/Compiler version
e.g. something like:
#if (CLRV2)
string Foo =
System.Configuration.ConfigurationManager.AppSettings("..
#else
string Foo =
System.Configuration.ConfigurationSettings.AppSettings("...
conditonally compile a line of code based on the CLR/Compiler version
e.g. something like:
#if (CLRV2)
string Foo =
System.Configuration.ConfigurationManager.AppSettings("..
#else
string Foo =
System.Configuration.ConfigurationSettings.AppSettings("...