This repository contains a collection of my C# projects and coding exercises from my freshman year of college. These projects demonstrate my progression in problem-solving, object-oriented programming, and console application development, as well as my growing understanding of software design principles.
During my 2nd semester of my freshman year, I focused on fundamentals of C# programming, including:
- Basic syntax and data types
- Control structures (loops, conditionals)
- Methods and modular programming
- Arrays and simple classes/objects
Example Projects:
- Console Calculator
- Student Record System
These projects allowed me to practice writing structured code, using classes and methods, and handling simple input/output in C#.
CSharp-Archives/
βββ OOP_Object-Oriented-Programming
β βββ lessons
β βΒ Β βββ hello_world.cs
β βΒ Β βββ variables-and-datatypes.cs
β βΒ Β βββ conditional-statements.cs
β βΒ Β βββ for-loop.cs
β βΒ Β βββ while-loop.cs
β βΒ Β βββ do-while-loop.cs
β βΒ Β βββ foreach-loop.cs
β βΒ Β βββ methods.cs
β βΒ Β βββ classes-and-objects.cs
β βΒ Β βββ arrays.cs
β βββ projects
β βββ console-calculator.cs
β βββ student-record.cs
βββ LICENSE
βββ README.md
- This repository serves as a personal archive of my C# learning journey.
- All projects and lessons are console-based and beginner-friendly.
- Many files include comments and documentation for easier understanding.
- The lessons progress naturally from basic syntax β loops β methods β classes and objects, building a solid foundation in C#.