Reasons to learn MSIL

Posted by mannu on Stack Overflow See other posts from Stack Overflow or by mannu
Published on 2008-10-14T22:03:02Z Indexed on 2010/05/08 11:28 UTC
Read the original article Hit count: 302

Filed under:
|
|
|

Hi,

Learning MSIL is fun and all that. Understanding what is going on "under the hood" can in many ways improve how you write your code performance-wise. However, the IL that is produced by the compiler is quite verbose and does not tell the whole story since JIT will optimize away a lot of the code.

I, personally, have had good use of my very basic IL understanding when I've had to make a small fix in an assembly I do not have the source code for. But, I could as well have used Reflector to generate C# code.

I would like to know if you've ever had good use of MSIL understanding and/or why you think it is worth learning it (except for the fun in it, of course). I'd also like to know if you think one should not learn it and why.

© Stack Overflow or respective owner

Related posts about msil

Related posts about .NET