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?
Asked
Active
Viewed 777 times
2 Answers
8
There are no new OpCodes in version 4.0 compared to version 3.5.

Timwi
- 65,159
- 33
- 165
- 230
-
Sidenote: The same is true when comparing to .NET Framework version 2 (because .NET 3.5 relies on the same version of the CLR as .NET 2). – stakx - no longer contributing Aug 12 '12 at 09:22
2
You could compare the fields of System.Reflection.Emit.OpCodes from V2 to V4.

Richard
- 106,783
- 21
- 203
- 265