well, let's say i've got the following if statement:
if (a)
{
// do something.
}
is it possible to run the statement only if a certain value in the app.config is true without making another if wrapping it?
it's like making a preprocessor #if directive, only not for the preprocessing but for the runtime.
is there such thing? a JIT directive or something like that?