tags:

views:

125

answers:

1

I want to write a application which can use to generate .exe program automatically from some word and txt files. How can I implement this ? Is it possible to generate a exe program with programming ?

+3  A: 

You can use the CodeDOM namespace to create a .NET Framework EXE. Generating Source Code and Compiling a Program from a CodeDOM Graph

Jordan