| c# Programming Glossary: l_002fWhen using object initializers, why does the compiler generate an extra local variable? http://stackoverflow.com/questions/1679780/when-using-object-initializers-why-does-the-compiler-generate-an-extra-local-va  L_002a call void mscorlib System.Console WriteLine string L_002f ldloc.1 L_0030 callvirt instance string ClassLibrary1.Class2.. 
 += new EventHandler(Method) vs += Method [duplicate] http://stackoverflow.com/questions/2749868/new-eventhandlermethod-vs-method  Counter CountEvent object class mscorlib System.EventArgs L_002f newobj instance void mscorlib System.EventHandler .ctor object.. Counter CountEvent object class mscorlib System.EventArgs L_002f newobj instance void mscorlib System.EventHandler .ctor object.. 
 Are .Net switch statements hashed or indexed? http://stackoverflow.com/questions/3366376/are-net-switch-statements-hashed-or-indexed  string int32 .ctor int32 L_002e dup L_002f ldstr x L_0034 ldc.i4.0 L_0035 call instance void mscorlib System.Collections.Generic.Dictionary`2.. 
 Is it better to declare a variable inside or outside a loop? http://stackoverflow.com/questions/8535846/is-it-better-to-declare-a-variable-inside-or-outside-a-loop  int32 GetEnumerator L_000d stloc.3 L_000e br.s L_002f L_0010 ldloc.3 L_0011 callvirt instance 0 mscorlib System.Collections.Generic.IEnumerator`1.. L_002a call void mscorlib System.Console WriteLine object L_002f ldloc.3 L_0030 callvirt instance bool mscorlib System.Collections.IEnumerator.. int32 GetEnumerator L_000d stloc.3 L_000e br.s L_002f L_0010 ldloc.3 L_0011 callvirt instance 0 mscorlib System.Collections.Generic.IEnumerator`1.. 
 |