{"id":23610037,"url":"https://github.com/andreabaciu17/microsoftcsharpprojects","last_synced_at":"2025-11-05T23:30:22.188Z","repository":{"id":252038549,"uuid":"839190362","full_name":"AndreaBaciu17/MicrosoftCSharpProjects","owner":"AndreaBaciu17","description":"This is a folder of projects I completed with the 'Foundational C# with Microsoft' Certifcation. These projects include a Pet Console App, an attacking player game, and more.","archived":false,"fork":false,"pushed_at":"2024-08-23T07:41:34.000Z","size":140,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-27T15:15:43.147Z","etag":null,"topics":["autoemail","consolegame","fizzbuzz","pet-project","rollingdice"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AndreaBaciu17.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-07T06:12:34.000Z","updated_at":"2024-10-24T18:22:18.000Z","dependencies_parsed_at":"2024-08-07T11:04:51.036Z","dependency_job_id":"f722105c-497a-49e1-bfe6-147fa4ddaaef","html_url":"https://github.com/AndreaBaciu17/MicrosoftCSharpProjects","commit_stats":null,"previous_names":["andreabaciu17/microsoftcsharpprojects"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreaBaciu17%2FMicrosoftCSharpProjects","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreaBaciu17%2FMicrosoftCSharpProjects/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreaBaciu17%2FMicrosoftCSharpProjects/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreaBaciu17%2FMicrosoftCSharpProjects/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndreaBaciu17","download_url":"https://codeload.github.com/AndreaBaciu17/MicrosoftCSharpProjects/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239475964,"owners_count":19645041,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["autoemail","consolegame","fizzbuzz","pet-project","rollingdice"],"created_at":"2024-12-27T15:15:45.686Z","updated_at":"2025-11-05T23:30:22.082Z","avatar_url":"https://github.com/AndreaBaciu17.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Microsoft C# Certification Projects\n\nThis repository contains various completed projects as part of my Microsoft C# certification. Each project demonstrates different aspects of C# programming, from basic console applications to more complex projects.\n\n## Installation\n\n### Clone the Repository\n\n```bash\ngit clone https://github.com/AndreaBaciu17/MicrosoftCSharpProjects.git\n```\n\nTo run a code. Open a \"TestProject,\" then its respective module name folder (example: M3rollingDice\"), then type the C# command in the **integrated terminal** to run the code\n```\ndotnet run\n```\n\n# Projects\nThis repository is organized into several folders, each representing a different chapter of my C# certification projects. Within each chapter folder, there are multiple mini projects, each focusing on specific concepts or tasks. Below is a brief overview of the projects:\nEach folder starts with the module number (e.g., M3 for Module 3) followed by the project name. To be easier, click the links below to get directly to the code.\n\n### C2TestProject\nDescription: Contains folders for mini projects organized by modules from Chapter 2, applying and utilizing basic C# concepts. \n- [**M3Subscription**.cs](C2Projects/M3Subscription):  A project to manage user subscriptions, including adding, removing, and updating subscription details\n- [**M3rollingDice**.cs](C2Projects/M3rollingDice): A simple dice rolling application.\n- [**M4foreachinven**.cs](C2Projects/M4foreachinven): Inventory management using foreach loops.\n- [**M4fraudIDs**.cs](C2Projects/M4fraudIDs): Fraud detection system. A system to detect and flag fraudulent IDs based on predefined criteria.\n- [**M4orderIDs**.cs](C2Projects/M4orderIDs): Order ID management in a retail system.\n- [**M6studentGrades**.cs](C2Projects/M6studentGrades): Student grades management system.\n- [**M7studentGradespt2**.cs](C2Projects/M7studentGradespt2): Continuation of the student grades project.\n\n### C3TestProject\nDescription: Contains mini projects focusing on various C# concepts from Chapter 3, like adding system logic to code. \n- [**M1Bool**.cs](C3Projects/M1Bool): A project demonstrating the use of boolean operations in various scenarios.\n- [**M2totalNums**.cs](C3Projects/M2totalNums): Total numbers calculation. A program to calculate the total of a series of numbers input by the user.\n- [**M3SKU.cs**](C3Projects/M3SKU): An exercise example that is a system to manage Stock Keeping Units (SKUs) in an inventory.\n- [**M4FizzBuzz**.cs](C3Projects/M4FizzBuzz): An implementation of the classic FizzBuzz problem\n- [**M5sentenceExtract**.cs](C3Projects/M5sentenceExtract):  A tool to extract and manipulate sentences from a given text.\n- [**M6petApp**.cs](C3Projects/M6petApp):  A pet management application to keep track of pet details and activities.\n\n### C4TestProject\nDescription: Contains more advanced mini projects from Chapter 4, which was about working with numerical and variable data.\n- [**M2convertNums**.cs](C4Projects/M2convertNums): A tool to convert numbers between different formats (e.x., binary, decimal,).\n- [**M3parseOrderIDs**.cs](C4Projects/M3parseOrderIDs): A project to parse and validate order IDs from a text input.\n- [**M4autoEmail**.cs](C4Projects/M4autoEmail): An exercise that automates email sender, sending emails based on predefined templates.\n- [**M5divTags**.cs](C4Projects/M5divTags): A project to manage and manipulate HTML div tags.\n- [**M6petApp(pt3)**.cs](C4Projects/M6petApp(pt3)): Continuation of the pet management application, adding more advanced features.\n\n### C5TestProject\nDescription: Further advanced projects with more complexity from Chapter 5, which worked with creating methods and class objects.\n- [**M1luckyBall**.cs](C5Projects/M1luckyBall): A lucky ball game where users guess the outcome of a random draw.\n- [**M2displayEmailMethod**.cs](C5Projects/M2displayEmailMethod): An exercise on creating a C# method that displays emails in a formatted manner.\n- [**M3rollGame**.cs](C5Projects/M3rollGame): A rolling game where users roll virtual dice and compete for the highest score.\n- [**M4petApp(pt4)**.cs](C5Projects/M4pettApp(pt4)): Further development of the pet management application.\n- [**M5consoleGame**.cs](C5Projects/M5consoleGame): A console-based game with various interactive features.\n\n### C6TestProject\nDescription: Focuses on debugging exercises from Chapter 6, which focused on debugging C# applications errors.\n- **Debug 101**: Debugging folder exercises with Visual Studio Code to identify and fix common coding errors.\n- [**M6transactionStore.cs**](C6Projects/Debug101): Transaction store debugging exercise example.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreabaciu17%2Fmicrosoftcsharpprojects","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandreabaciu17%2Fmicrosoftcsharpprojects","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreabaciu17%2Fmicrosoftcsharpprojects/lists"}