the comments are not XML comments, just normal comments
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
No. Comments are ignored by the compiler and have no representation in the assembly. |
|||||||||||||
|
|
A disassembler can't get the original source code. It will only create source code that does the same thing as the original source code. As comments doesn't result in any instructions in the program, they can't be recreated from the compiled code. |
|||||||||||
|
|
Just to add to Marks answer - the XML comments / docstrings found in the source code are also not written to the assembly, and so are also inaccessible using Reflector. The XML comments are written to a separate xml file which the Visual Studio IDE needs access to in order to be able to supply these comments in intellisense. |
|||
|
|