What does an if statement look like when it's compiled into IL?
It's a very simple construct in C#. Can sombody give me a more abstract definition of what it really is?
|
What does an It's a very simple construct in C#. Can sombody give me a more abstract definition of what it really is?
| ||||
|
feedback
|
|
Here are a few
One thing to note here: The IL instructions are always the “opposite”. | ||||
|
feedback
|
|
It depends on the condition of the The actual | |||
|
feedback
|
|
A branch instruction is used that will jump to a target instruction depending on the value(s) on top of the stack.
| ||||
|
feedback
|
|
A simple example:
This would be equal to
Other ifs would differ, including conditional branches. This really is too much to explain in one post, you are better of looking for an introduction to IL-Code. There is a nice article on codeproject concerning this. | |||||
feedback
|
ildasm.exefrom a Visual Studio command prompt. – 0xA3 Sep 7 '10 at 23:23