tags:

views:

167

answers:

1

I'm using the usual

CSharpCodeProvider codeProvider = new CSharpCodeProvider(new Dictionary<String, String> { { "CompilerVersion", "v3.5" } });

for the 3.5 compiler for dynamic code compilation. I'm assuming the 4.0 compiler just v4.0?

Bob.

+1  A: 

It is indeed v4.0

scope_creep