How Can I Run My C# Console Applications On Other Computers?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Ramine
    New Member
    • Jul 2007
    • 3

    How Can I Run My C# Console Applications On Other Computers?

    How can I run my C# console applications on other computers?
    Is any software needed to run C# console applications on other computers?
    if any external software is needed so C# won't be Portable.
  • kenobewan
    Recognized Expert Specialist
    • Dec 2006
    • 4871

    #2
    The main thing is that it has the same version of .net, but the same platform would help. HTH.

    Comment

    • nmsreddi
      Contributor
      • Jul 2006
      • 366

      #3
      Hello

      you can any c# application on any system ,if provided .net framework is installed in that system and your c# application exe file is provided

      oneway to execute is

      in command prompt navigate to your framework folder(i.e where your csharp compiler is available) and type
      your path:>csc.exe application exe name

      try it out it works fine

      Good luck

      Comment

      Working...