Matt Gerrans
Posts: 1153
Nickname: matt
Registered: Feb, 2002
|
|
Re: Create *.exe file in C#
|
Posted: Dec 19, 2002 1:21 PM
|
|
This should be easy: Create your C# program and compile it. Create a C/C++ self-extracting archive program (there are third party tools such as Abbrevia which can facilitate this), which contains the CLR installer (.Net runtime) and your program. When this program runs, it unpacks and installs the .Net runtime, then unpacks and runs your C# program. Your program will probably be about 16 MB larger as a result and a bit slow on the first run.
|
|