c# Programming Glossary: l_0000
Generate tail call opcode http://stackoverflow.com/questions/15864670/generate-tail-call-opcode Method Start RVA 0x205e Code Size 17 0x11 .maxstack 8 L_0000 ldarg.0 L_0001 brtrue.s L_0005 L_0003 ldarg.1 L_0004 ret L_0005.. Method Start RVA 0x3bfe Code Size 17 0x11 .maxstack 8 L_0000 ldarg.0 L_0001 brtrue.s L_0005 L_0003 ldarg.1 L_0004 ret L_0005.. int32 int32 Mono.Cecil.CustomAttributeArgument .maxstack 5 L_0000 nop L_0001 ldarg.0 L_0002 brtrue.s L_0006 L_0004 ldarg.1 L_0005..
When 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 class2 2 class ClassLibrary1.Class2 g__initLocal0 L_0000 newobj instance void ClassLibrary1.Class1 .ctor L_0005 stloc.0..
+= new EventHandler(Method) vs += Method [duplicate] http://stackoverflow.com/questions/2749868/new-eventhandlermethod-vs-method hidebysig instance void Count cil managed .maxstack 8 L_0000 ldarg.0 L_0001 ldfld class DelegateTest.Program EventProducer.. instance void CountWithNew cil managed .maxstack 8 L_0000 ldarg.0 L_0001 ldfld class DelegateTest.Program EventProducer..
Lock statement vs Monitor.Enter method http://stackoverflow.com/questions/2837070/lock-statement-vs-monitor-enter-method class ConsoleApplication2.Test CS 2 0000 5 bool CS 4 0001 L_0000 nop L_0001 ldstr Test1 L_0006 newobj instance void ConsoleApplication2.Test..
What really happens in a try { return x; } finally { x = null; } statement? http://stackoverflow.com/questions/421797/what-really-happens-in-a-try-return-x-finally-x-null-statement cil managed .maxstack 1 .locals init 0 int32 CS 1 0000 L_0000 call int32 Program SomeNumber L_0005 stloc.0 L_0006 leave.s.. Foo L_000d endfinally L_000e ldloc.0 L_000f ret .try L_0000 to L_0008 finally handler L_0008 to L_000e This basically declares..
Is the null coalesce operator thread safe? http://stackoverflow.com/questions/4619593/is-the-null-coalesce-operator-thread-safe cil managed .maxstack 2 .locals init 0 object CS 1 0000 L_0000 nop L_0001 ldarg.0 L_0002 ldfld object ConsoleApplication1.Program..
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 System.Collections.Generic.IEnumerator`1 int32 enumerator L_0000 ldc.i4.0 L_0001 ldc.i4.s 10 L_0003 call class mscorlib System.Collections.Generic.IEnumerable`1.. System.Collections.Generic.IEnumerator`1 int32 enumerator L_0000 ldc.i4.0 L_0001 ldc.i4.s 10 L_0003 call class mscorlib System.Collections.Generic.IEnumerable`1..
|