Help compiling

how do I compile/debug and run an application in visual J# 2005 Express edition



Answer this question

Help compiling

  • Francis Shum

    Hi,

    1. OPen J# express.
    2. File > new > Project.
    3. Create a new Console application.
    4. OPen program.jsl.
    5. Write following line of code in main method...

    System.Console.WriteLine("hello world");

    6. Place the cursor on any character of above line.
    7. Press f9. It will put breakpoint on this line.
    8. Press ctrl + Shift + B (or Build > Build Solution). It will compile your app.
    9. Press f5 to debug or Ctrl + f5 to Run it.

    Hope it helps. Feel free to postback if you have any queries.

    Thanks.



  • tyaramis

    Thanks
  • eldiener

    note that directly running or debugging (both options are on the menu and can also customize the toolbar to add them by rightclicking on it) without first building the solution should compile any changed stuff automatically, so for big projects you can avoid rebuilding everything cause it might take some time

  • Help compiling