13

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?

Timwi
  • 65,159
  • 33
  • 165
  • 230

2 Answers2

8

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

Timwi
  • 65,159
  • 33
  • 165
  • 230
2

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

Richard
  • 106,783
  • 21
  • 203
  • 265