Class Library
Last updated
Was this helpful?
Last updated
Was this helpful?
Next we are going to create a class library to hold the majority of our code. This allows are code to be more reusable in the future. Even if you plan to delete this project once your done, this is still a good practice to follow.
Open your solution explorer and right click your solution, the solution is the top-most item in the solution explorer.
Then under the "Add" subsection, click "New Project"
Now select "Class Library" from the templates list
Name it "Library"
Set the Framework to the same as the parent (.NET 6.0 (LTS) for this example)
Click Create!
Now delete the default class that is created!
Now create two folders/namespaces inside the class library See: Namespaces
Controller
Model
The controller namespace is used to handle logic classes. Every class in this namespace should be named by this convension: "{Name}Controller.cs". For example if we wanted a class to handle the FileSystem we would say "FileSystemController.cs"
The model namespace is used to handle structure classes, these are classes that don't do anything but instead hold data. Every class in this namespace should be named by this convension: "{Name}Model.cs". For example if we wanted a class to hold FileData we would say "FileModel.cs"