|
From: nicnat on 24 Jun 2008 10:22 Is there a huge difference in the intermidiate language code produced by VS among the different languages supported? For example, does the IL code generated in a C# program strongly resemble the IL code generated by a similar program written in say VB?
From: Marc Gravell on 24 Jun 2008 10:39 Pretty much, yes. The obvious exception would be any language-sepcific features. The managed-C++ compiler might be an exception, in that it supposedly does a few more compiler (rather than JIT) optimisations. The IL is similar enough, for instance, that Reflector does a fair job of porting between them on-the-fly... Marc
From: Pavel Minaev on 25 Jun 2008 10:31 On Jun 24, 6:22 pm, "nicnat" <a...(a)nospam.com> wrote: > Is there a huge difference in the intermidiate language code produced by VS > among the different languages supported? For example, does the IL code > generated in a C# program strongly resemble the IL code generated by a > similar program written in say VB? Yes, with the notable exception of JScript.NET.
|
Pages: 1 Prev: Crash-bug in the VS 2008 C# compiler Next: asp.net. Version query |