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

https://github.com/si-ja/educational-micro-projects-in-c-sharp

Small projects done in a span of few hours at best. The core idea is to study various components of C# language and implement small applications of those components with utmost basic ideas.
https://github.com/si-ja/educational-micro-projects-in-c-sharp

Last synced: 3 months ago
JSON representation

Small projects done in a span of few hours at best. The core idea is to study various components of C# language and implement small applications of those components with utmost basic ideas.

Awesome Lists containing this project

README

        

# Educational Micro Projects in C#

## Idea

This repository holds small projects that I have done in a span of say 1-2 hours, by mostly also learning about them first. The main idea behind these projects is to do them in C# and make sure they are not based on complicated implementations, but actually be the complete opposite. These projects are meant to show relatively simple implementations of certain capabilities that C# is available of, but which might not often be utilized. Think of this repo as a set of simple educational components that show various things you might or might not use with C#, but are definitely good to know. And as a side note: I'm still learning most of these things myself and trying them out.

## Current Projects

- [X] Enum. Concept of implementing Enum(s), located in the folder `Starting with Enums`
- [ ] Abstract Classes.
- [ ] Interfaces.
- [ ] Iterations.
- [X] HashTables. Concept of implementing HashTables is located in the folder `Starting with HashTables`.