structure of the generated code

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is the code that is generated from .net framework well structured and easy to follow.
 
Are you refering to the output of the compilers? If you are, then the output is MSIL and it is easily understandable by humans if you disassemble an assembly (use ildasm.exe to view the output). John Gough's book "Compiling for the .Net Common Language Runtime (ISBN 0-13-062296-6 prentice hall 2002)" is a good resource for understanding MSIL and writing compilers that target the CLR.

Hope that helps

Jackson Davis [MSFT]
Microsoft VSTO Tools
--
This posting is provided "AS IS" with no warranties, and confers no rights. Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm

Note: For the benefit of the community-at-large, all responses to this message are best directed to the newsgroup/thread from which they originated.
--------------------


----- curious wrote: -----

Is the code that is generated from .net framework well structured and easy to follow.
 
when you generate an application using .net framework and there is a problem with the application, is the source code difficult to debug? Are errors ease to trace?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top