How to stop C#'s switch statement from generating the CIL switch instruction - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T09:31:51Z http://stackoverflow.com/feeds/question/763254 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/763254/how-to-stop-cs-switch-statement-from-generating-the-cil-switch-instruction 3 How to stop C#'s switch statement from generating the CIL switch instruction qochismo 2009-04-18T10:28:07Z 2009-04-18T12:09:58Z <p>C#'s switch statement can compile to a CIL switch instruction, or if/else's, depending on the cases in the statement as mentioned <a href="http://stackoverflow.com/questions/44905/c-switch-statement-limitations-why#48259">here</a>. Is there a way to force the compiler to always generate the if/else variant in a block of code?</p> http://stackoverflow.com/questions/763254/how-to-stop-cs-switch-statement-from-generating-the-cil-switch-instruction/763260#763260 3 Answer by Andrew for How to stop C#'s switch statement from generating the CIL switch instruction Andrew 2009-04-18T10:33:01Z 2009-04-18T10:33:01Z <p>Can you provide more information about why you want to force a particular set of instructions to be generated?</p> http://stackoverflow.com/questions/763254/how-to-stop-cs-switch-statement-from-generating-the-cil-switch-instruction/763269#763269 5 Answer by Jon Skeet for How to stop C#'s switch statement from generating the CIL switch instruction Jon Skeet 2009-04-18T10:38:01Z 2009-04-18T12:09:58Z <p>The simplest way would be to use if/else in your code. Apart from anything else, that makes it clearer to the reader that that's what you <em>want</em> to happen instead of using a switch.</p> <p>EDIT: Okay, so the readability isn't important for you - but basically if you want the compiled code to change, the source code is going to have to change. You could use the Mono compiler and modify it yourself, but I doubt that there's any way of getting the Microsoft compiler to effectively ignore that you're using a switch statement.</p> http://stackoverflow.com/questions/763254/how-to-stop-cs-switch-statement-from-generating-the-cil-switch-instruction/763300#763300 1 Answer by ballarewt for How to stop C#'s switch statement from generating the CIL switch instruction ballarewt 2009-04-18T11:18:16Z 2009-04-18T11:18:16Z <p>Have you tried a different compiler (i.e., Mono), or tried to place your offending classes in a separate assembly and switch to a different language for it?</p> http://stackoverflow.com/questions/763254/how-to-stop-cs-switch-statement-from-generating-the-cil-switch-instruction/763323#763323 0 Answer by erikkallen for How to stop C#'s switch statement from generating the CIL switch instruction erikkallen 2009-04-18T11:49:55Z 2009-04-18T11:49:55Z <p>How are you making the compiler do this? I did a test with VS2008:</p> <pre><code>public static int DoSomething(int i) { switch (i) { case 1: return 0; case 100: return 1; case 1000: return 2; default: return 3; } } </code></pre> <p>compiles to:</p> <pre><code>.method public hidebysig static int32 DoSomething(int32 i) cil managed { .maxstack 2 .locals init ( [0] int32 CS$1$0000, [1] int32 CS$4$0001) L_0000: nop L_0001: ldarg.0 L_0002: stloc.1 L_0003: ldloc.1 L_0004: ldc.i4.1 L_0005: beq.s L_0016 L_0007: ldloc.1 L_0008: ldc.i4.s 100 L_000a: beq.s L_001a L_000c: ldloc.1 L_000d: ldc.i4 0x3e8 L_0012: beq.s L_001e L_0014: br.s L_0022 L_0016: ldc.i4.0 L_0017: stloc.0 L_0018: br.s L_0026 L_001a: ldc.i4.1 L_001b: stloc.0 L_001c: br.s L_0026 L_001e: ldc.i4.2 L_001f: stloc.0 L_0020: br.s L_0026 L_0022: ldc.i4.3 L_0023: stloc.0 L_0024: br.s L_0026 L_0026: ldloc.0 L_0027: ret } </code></pre> <p>No switch instruction there.</p> <p>Perhaps you should file a bug with Microsoft?</p>