vote up 1 vote down star
1

I know you can use a .net reflector to view code created with .net but if i put something in the comments for my own personal reminder is that compiled in the exe as well.

I don't intend to release the source code for my application and i know the 100% safe bet is to just remove everything i don't want out but i was just wondering if someone could reverse engineer my comments/

Thanks

Crash

flag

66% accept rate

8 Answers

vote up 17 vote down check

Comments are ignored by the compiler. They will not be put into the output executable.

link|flag
vote up 6 vote down

No, comments are not in the compiled executable.

link|flag
vote up 4 vote down

If you'd like to check what's in there yourself, get hold of the 'strings' utility (Cygwin version is fine) and run it over your code. It'll print out all the legible strings in your binary files. And no, as others have said, no comments make it through.

link|flag
vote up 1 vote down

Not to worry, comments are ignored by the compiler.

link|flag
vote up 6 vote down

No, comments are not included in your code; however, classes, methods and members are. So, if you are using self-documenting code, some of the logic will be discernible. I recommend using obfuscation if you are concerned about anyone reflecting information from your delivered code.

link|flag
vote up 3 vote down

As the other say: Comments are not compiled in. But you can enable the xml documentation creation in the C# project settings. If you then use the MS documentation syntax (/// <summary>...</summary> and so on) an extra .xml file will be generated.

If Reflector loads an assembly it also looks for the .xml documentation file and decorates the declarations with the documentation found in the XML file!

link|flag
vote up 0 vote down

i found the best obfuscator on the web, eazfuscator :)))

[http://www.foss.kharkov.ua/g1/projects/eazfuscator/dotnet/Default.aspx%5D%5B1%5D

I couldn't use dotfuscator CE in VS Pro 2008 as i was using an app.config setting for usernames and the exe just crashes when you obfuscate. with eazfuscator it worked flawlessly and it's FREE!!!!!!!!!!

link|flag
vote up 0 vote down

Just note, the PDB files may contain this information.

Check out: http://stackoverflow.com/questions/596512/how-much-information-does-pdb-files-contain-c-net

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.