Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
domainmodel

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.