Run a C# program

Hello all

I wrote a small C# (2005) program that reads data from Excel 2003 and create another Excel document. The code refers to Microsoft.Office.Interop.Excel. Now I want to run this program from another computer with Excel 2003 and .NET Framework 2.0 installed. What else I need to run the program, except copying over the EXE file

thx

Yuelin



Answer this question

Run a C# program

  • VS228

    That's all you need!

    If the client machine has the .net 2.0 framework installed all you should need is the executable file <yourAppHere>.exe

    -Will


  • Run a C# program