c# - tool to view the compiler generated code -


Does anyone know the device for viewing the code generated by the C # compiler?

I want to verify it

  class X {public event de Ev; }  

It has been compiled:

  class X {personal D __Ev; // field Delayed Public Event d'Avon {add {lock (this) {__Ev = __Ev + value; }} Remove {lock (this) {__Ev = __Ev - value; }}}}}}  

Your question does not make any sense, but you probably do.

Edit : Now, your question is understandable. You are still looking for reflector.
However, you do not have to set optimization in any options.

It shows,

  private event handler  

Comments

Popular posts from this blog

.net - C# List<T>.Find(x=>x.Rectangle.Contains(Point)) FAIL -

iphone - Smoothing a rounded stroke in Core Graphics -

c++ - QtQuick: QQmlApplicationEngine failed to load component qrc:/main.qml:23 Invalid attached object assignment -