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.
- Host: GitHub
- URL: https://github.com/si-ja/educational-micro-projects-in-c-sharp
- Owner: Si-ja
- License: mit
- Created: 2021-06-13T09:03:20.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-14T21:00:54.000Z (about 4 years ago)
- Last Synced: 2025-01-26T06:41:12.159Z (5 months ago)
- Language: C#
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`.