creating an exe that starts without framework

  • Thread starter Thread starter Sebastian Erler
  • Start date Start date
S

Sebastian Erler

is there a way to create *.exe files which have been coded in C# and
run without an installed .net Framework?

Sebastian Erler
 
Microsoft's C# compilers compile source code into MSIL, which runs on the
..NET Framework (or another CLI-compliant engine). What you'd need to
accomplish your question is a C# compiler that generates native code for the
processor. I'm not sure if any of these have been built by 3rd parties,but
it is possible.
 
Back
Top