Note: Working with projects is available to registered users only.
Typically a single .cs file contains a single class, but that is not the rule. To add another source file to an existing project:
Both FirstProject.cs and Credits.cs are now listed in the Project Tree pane.
The Main() method in FirstProject.cs calls Credits.Display(); defined in the Credits.cs file. As both files are in the same project and belong to the same namespace there is no need to specify using directive.
To remove a file from the project, simply click on it in the Project Tree pane to select it and hit the Delete key.