Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/solesen1992/csharp-console-app-exercise-practice
Small C# exercises from my education in Computer Science (third semester). Small and big exercises. Some are code along and others I had to figure out on my own.
https://github.com/solesen1992/csharp-console-app-exercise-practice
console console-application csharp visual-studio
Last synced: about 2 months ago
JSON representation
Small C# exercises from my education in Computer Science (third semester). Small and big exercises. Some are code along and others I had to figure out on my own.
- Host: GitHub
- URL: https://github.com/solesen1992/csharp-console-app-exercise-practice
- Owner: solesen1992
- Created: 2024-09-04T13:35:16.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-10-21T15:32:10.000Z (3 months ago)
- Last Synced: 2024-10-22T02:32:15.495Z (3 months ago)
- Topics: console, console-application, csharp, visual-studio
- Language: C#
- Homepage:
- Size: 201 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C# console app exercise practice
Small exercises in C# from my education in Computer Science. All the exercises are made as console apps.## Credit
The exercises are made by teachers at UCN. Some of the exercises are code along and others I had to figure out on my own.
- The projects starting with "Demo" are 'code along' sessions.
- The projects starting with "Exercise" are exercises from programming classes. Some of them are code along. Others I had to figure out on my own.
# Documentation
## ConsoleApp1, ConsoleApp2 and HelpCode
Small exercise to get to know Visual Studio.## SmallDomainModel
This exercise focuses on implementing a small domain model using C# in a console application. The key concepts covered in this exercise include classes, objects, properties, the ToString method, and collections. The exercise implements a simple domain model that consists of an Employee class and a Department class, each with its properties, constructors, and methods.