{"id":15067959,"url":"https://github.com/powerbliz00/alphabet","last_synced_at":"2026-01-02T15:49:26.721Z","repository":{"id":247248561,"uuid":"825361289","full_name":"Powerbliz00/Alphabet","owner":"Powerbliz00","description":"a simple program sorts lowercase alphabet to uppercase, printing each letter in one line using c# methods","archived":false,"fork":false,"pushed_at":"2024-07-07T15:22:52.000Z","size":1,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-16T06:12:05.520Z","etag":null,"topics":["alphabet-sorting","c-sharp","string-manipulation","string-sorting","string-split","uppercase-conversion","variable-conversion"],"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/Powerbliz00.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-07-07T15:17:32.000Z","updated_at":"2024-07-07T15:42:56.000Z","dependencies_parsed_at":"2024-07-09T14:04:30.101Z","dependency_job_id":null,"html_url":"https://github.com/Powerbliz00/Alphabet","commit_stats":null,"previous_names":["powerbliz00/alphabet"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Powerbliz00%2FAlphabet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Powerbliz00%2FAlphabet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Powerbliz00%2FAlphabet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Powerbliz00%2FAlphabet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Powerbliz00","download_url":"https://codeload.github.com/Powerbliz00/Alphabet/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243830953,"owners_count":20354854,"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":["alphabet-sorting","c-sharp","string-manipulation","string-sorting","string-split","uppercase-conversion","variable-conversion"],"created_at":"2024-09-25T01:29:33.982Z","updated_at":"2026-01-02T15:49:26.670Z","avatar_url":"https://github.com/Powerbliz00.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Uppercase Alphabet\n\nThis simple C# program demonstrates how to convert lowercase letters to uppercase using the `ToUpper()` method.\n\n## Code Explanation\n\nThe code iterates through the lowercase alphabet and converts each letter to uppercase using the `ToUpper()` method. It then prints the uppercase letters to the console.\n\n```C#\nusing System;\n\npublic class Program\n{\n   // C# Main method - The program start here\n    static void Main(string[] args)\n    {\n        string alphabet = \"abcdefghijklmnopqrstuvwxyz\";\n        // Iteration in each letter in the alphabet string\n        foreach (char letter in alphabet){\n            // definition of new variable 'letterCapitalCase' for converting char type into string output\n            string letterCapitalCase = letter.ToString().ToUpper(); \n            // Output method\n            Console.WriteLine(letterCapitalCase);\n        }\n    }\n}\n```\n\n## Running the Program\n\n### Windows\n\n1. **Install .NET SDK:** If you don't have it already, download and install the .NET SDK from [https://dotnet.microsoft.com/download](https://dotnet.microsoft.com/download).\n2. **Compile the code:** Open a command prompt and navigate to the directory containing the C# file (`Program.cs`). Run the following command to compile the code:\n   ```bash\n   dotnet build\n   ```\n3. **Run the program:** Execute the following command to run the compiled program:\n   ```bash\n   dotnet run\n   ```\n\n### Linux\n\n1. **Install .NET SDK:**  Install the .NET SDK using your distribution's package manager. For example, on Ubuntu:\n   ```bash\n   sudo apt update\n   sudo apt install dotnet-sdk-6.0\n   ```\n2. **Compile the code:** Open a terminal and navigate to the directory containing the C# file (`Program.cs`). Run the following command to compile the code:\n   ```bash\n   dotnet build\n   ```\n3. **Run the program:** Execute the following command to run the compiled program:\n   ```bash\n   dotnet run\n   ```\n\n## Output\n\nThe program will output the uppercase alphabet to the console, one letter per line:\n\n```\nA\nB\nC\n...\nZ\n```\n\nThis repository serves as a basic example of string manipulation in C# and demonstrates the use of the `ToUpper()` method\nand the need of `Type conversion from char type from string type, using ToString() method`. ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpowerbliz00%2Falphabet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpowerbliz00%2Falphabet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpowerbliz00%2Falphabet/lists"}