Finding information on C# compiler optimizations

  • Thread starter Thread starter VM
  • Start date Start date
V

VM

Hello,

I'm looking for information on C# compiler optimization or compilation for
an engineering short paper I want to write. Any sites with some technical
info on the new advances of C# compilation would be greatly appreciated.
Any sites that have comparisons between C# compilation an any other language
would be even better.

My email is : MYERSV at GO dot COM

Thanks,
VM

ps - I never check the following email attached to this post
(e-mail address removed)
 
Check out the SSCLI web site.

http://msdn.microsoft.com/netframew...brary/en-us/dndotnet/html/mssharsourcecli.asp

As far as optimizations go, the source code there is identical to the
shipping 7.0 C# compiler, but be forewarned, there aren't a lot of
optimizations in the compiler. Instead it seemed more prudent to put all
the optimizations into the JIT, so that all languages/compilers that
targeted .NET could benefit. There are lots other of arguments for and
against this approach, and I'm sure google could help you find them.
 
Back
Top