{"id":20357974,"url":"https://github.com/prak112/devschool-csharp","last_synced_at":"2025-10-12T19:07:37.983Z","repository":{"id":148383261,"uuid":"617907259","full_name":"prak112/DevSchool-Csharp","owner":"prak112","description":"C# tasks \u0026 projects from Software Development training at Savo Vocational College (SAKKY)","archived":false,"fork":false,"pushed_at":"2023-05-22T17:04:53.000Z","size":104,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-15T01:41:55.326Z","etag":null,"topics":["beginner-friendly","c-sharp-learning"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/prak112.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2023-03-23T11:10:12.000Z","updated_at":"2023-09-01T13:43:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"6af3bf67-171b-485b-b0a2-9cfb505c74ad","html_url":"https://github.com/prak112/DevSchool-Csharp","commit_stats":null,"previous_names":["prak112/devschool-csharp"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prak112%2FDevSchool-Csharp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prak112%2FDevSchool-Csharp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prak112%2FDevSchool-Csharp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prak112%2FDevSchool-Csharp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/prak112","download_url":"https://codeload.github.com/prak112/DevSchool-Csharp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241895227,"owners_count":20038510,"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":["beginner-friendly","c-sharp-learning"],"created_at":"2024-11-14T23:24:47.118Z","updated_at":"2025-10-12T19:07:32.964Z","avatar_url":"https://github.com/prak112.png","language":"C#","readme":"# C# Learnings\n*SOURCE : [Microsoft Learn-Down the Rabbit hole...](https://learn.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/)* :octocat:\n\n## Overview\n\n- This repository contains basic C# programs that demonstrate the fundamental concepts of C#, includes and not limited to :\n   - Datatypes\n   - String operations\n   - Loops\n   - Data Structures (Arrays, Lists)\n   - Classes\n- The programs are written in Visual Studio 2022 and can be run on Windows, Linux or MacOS\n- Includes tasks and final assignment from Software Developer Training at Savon Ammattiopisto (SAKKY)\n\n## Table of Contents\n\n- [Fundamentals](#fundamentals)\n- [Type System](#type-system)\n- [Execution and Program Hierarchy](#execution-and-program-hierarchy)\n- [Getting Started with C#](#getting-started-with-c#)\n- [Usage](#usage)\n- [License](#license)\n-------------\n\n## Fundamentals\n### Features\n - Garbage Collection (check Source for more), i.e., automated reclamation of memory occupied by unreachable unused objects\n - LINQ, Language Integrated Query, to provide commmon-pattern syntax to work with data from any source\n\n### Program Execution\n - C# compiles the code to IL (Intermediate Language)\n - Code in IL is converted by .NET (CLR-Common Language Runtime \u0026 Set of Class libraries) to native-machine instructions by JIT (JustInTime) compilation\n\n\n## TYPE System\n- .NET Framework follows [Common Type System or CTS](https://learn.microsoft.com/en-us/dotnet/standard/base-types/common-type-system).\n - CTS supports following 5 different categories :\n    1. \u003cb\u003eClasses\n    2. Structures\n    3. Enumerations\n    4. Interfaces\n    5. Delegates\u003c/b\u003e\n- RECORD, used to define any of the TYPES for storage and minimal associated behavior (for ex. `record struct`, `record class`, etc.)\n- VALUE TYPES (Immutable)\n    * Simple (int, short, float, double, decimal, bool, char)\n    * Enum\n    * Struct (similar to class, but inherits from Object)\n    * Nullable\n    * Tuple\n- REFERENCE TYPES (Mutable)\n    * Class\n        * Unicode Strings (string)\n        * User-defined\n    * Interface (possible Network Programming feature)\n    * Array\n    * Delegate (equivalent to Decorators in Python)\n\n\n## Execution and Program Hierarchy\n - PROGRAMS (multiple Files and/or namespaces)\n - NAMESPACES (holds Classes, Properties and everything included in the Program)\n - TYPES (Value \u0026 Reference, ex. Class, Array, int, string, etc.)\n - MEMBERS (Methods, Properties)\n - ASSEMBLIES (Metadata, ex: .exe or .dll files)\n\n\n## Getting Started with C#\n - Find a suitable Environment based on situation :\n    - [Online Environment](https://learn.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/tutorials/), i.e., Browser based/ Microsoft Learn/ Jupyter on Binder Tutorials\n    - [Local Environment](https://learn.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/tutorials/local-environment), i.e., Personal Device \n\n\n------------\n\n## Usage\n\n### Prerequisites\n- Visual Studio 2022\n- .NET Framework 6.0 or later\n\n\n### Installation\n1. Clone the repo\n   ```sh\n   git clone https://github.com/prak112/sakky-okk-Cperus.git\n   ```\n2. Open the solution file in Visual Studio.\n\n### Working\n1. Create a new Project\n2. Build your Logic\n3. Click on ```\u003cproject_name\u003e.sln``` file\n4. Debug the program\n5. Correct errors as shown in *\"Error List\"*\n\n### Contributing\nContributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\n1. Fork the Project\n2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the Branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License\nDistributed under the MIT License. See `LICENSE` for more information.\n\n[![LinkedIn][linkedin-shield]][linkedin-url]\n\n\u003c!-- MARKDOWN LINKS \u0026 IMAGES --\u003e\n\u003c!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --\u003e\n\n[!contributors-shield]: https://img.shields.io/github/contributors/othneildrew/Best-README-Template.svg?style=for-the-badge\n[contributors-url]: https://github.com/othneildrew/Best-README-Template/graphs/contributors\n[forks-shield]: https://img.shields.io/github/forks/othneildrew/Best-README-Template.svg?style=for-the-badge\n[forks-url]: https://github.com/othneildrew/Best-README-Template/network/members\n[stars-shield]: https://img.shields.io/github/stars/othneildrew/Best-README-Template.svg?style=for-the-badge\n[stars-url]: https://github.com/othneildrew/Best-README-Template/stargazers\n[issues-shield]: https://img.shields.io/github/issues/othneildrew/Best-README-Template.svg?style=for-the-badge\n[issues-url]: https://github.com/othneildrew/Best-README-Template/issues\n\n[license-shield]: https://img.shields.io/github/license/prak112/Best-README-Template.svg?style=for-the-badge\n[license-url]: https://choosealicense.com/licenses/mit/\n[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge\u0026logo=linkedin\u0026colorB=555\n[linkedin-url]: https://www.linkedin.com/in/prakirth-govardhanam-3a185156/\n[product-screenshot]: images/screenshot.png\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprak112%2Fdevschool-csharp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprak112%2Fdevschool-csharp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprak112%2Fdevschool-csharp/lists"}