tags:

views:

108

answers:

2

Are there any IL opcodes that are new in .NET 4.0 as compared to 3.5, and if so, where can I find a list of them?

A: 

You could compare the fields of System.Reflection.Emit.OpCodes from V2 to V4.

Richard
+5  A: 

There are no new OpCodes in version 4.0 compared to version 3.5.

Timwi