A thread in another forum raised a couple of questions for me.... as no resultion to that thread have come, I thought it would be good to se if someone here knows.

If you create an application, package it and distribute it, and then open the .exe file in notepad, you will be able to read all kinds of text from your code. For example I made a program that connected to a SQL server to do some updates and I found the complete connection string with password and all in notepad (not good =).

I guess this has to do with the JIT-compiler step. The exe of a .NET application does not contain native code but IL-code to be compiled at runtime....

Anyone know a way around this?