Possible Duplicate:
Is there some way to compile a .NET application to native code?
When you compile a C# application, it is compiled to CIL code, to be interpreted by the framework when it is ran, but im wondering if its possible to generate a native x86 EXE file stub for my application(s).
This way it is not possible to directly open my applications in a decompiler.
P.S I cannot use a obfuscator for anything.