Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The New Project dialog box contains a list of predefined Visual Studio project templates, which represent the types of projects you can create with Visual Studio. When you choose a Project Type, Visual Studio sets up the necessary compiler options, and adds basic assembly references to the project. All of the underlying code and resource files, such as icons, cursors, and so forth, are also generated so you can compile an empty stub project. Once generated, you can add your own implementations and compile from within the project.
Visual J# Express Edition provides four predefined project types:
| Project Type | Project Description |
|---|---|
Windows Application |
This project type is for creating Windows client applications. The project creates a Windows Form onto which you can drop controls, and display text and graphics. For more information, see How to: Create a Visual J# Windows Application (Visual J# Express). |
Class Library |
A class library project creates a library file that can be referenced from other applications. |
Console Application |
This project type is for creating command-line utilities and applications. The output and input of the program occurs through a text-based terminal window. For more information, see How to: Create a Visual J# Console Application (Visual J# Express). |
Calculator |
This is a Starter Kit project that contains a complete calculator. |