{"id":29890002,"url":"https://github.com/aoxetech/aoxe.extensions","last_synced_at":"2025-09-11T07:34:46.922Z","repository":{"id":60772187,"uuid":"200162095","full_name":"AoxeTech/Aoxe.Extensions","owner":"AoxeTech","description":"Extensions for C#","archived":false,"fork":false,"pushed_at":"2025-05-20T14:28:38.000Z","size":345,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-31T02:37:43.252Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/AoxeTech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2019-08-02T03:58:16.000Z","updated_at":"2025-05-20T14:29:45.000Z","dependencies_parsed_at":"2023-11-13T03:23:25.267Z","dependency_job_id":"2a6d6836-00fa-466d-8e8c-3728661068eb","html_url":"https://github.com/AoxeTech/Aoxe.Extensions","commit_stats":{"total_commits":123,"total_committers":3,"mean_commits":41.0,"dds":0.5121951219512195,"last_synced_commit":"f78e695bbc45f14c033f8f165b28139f869bbf58"},"previous_names":["aoxetech/aoxe.extensions","picohex/zaabee.extensions"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/AoxeTech/Aoxe.Extensions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AoxeTech%2FAoxe.Extensions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AoxeTech%2FAoxe.Extensions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AoxeTech%2FAoxe.Extensions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AoxeTech%2FAoxe.Extensions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AoxeTech","download_url":"https://codeload.github.com/AoxeTech/Aoxe.Extensions/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AoxeTech%2FAoxe.Extensions/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268126583,"owners_count":24200290,"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","status":"online","status_checked_at":"2025-07-31T02:00:08.723Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2025-07-31T22:23:14.409Z","updated_at":"2025-07-31T22:23:19.105Z","avatar_url":"https://github.com/AoxeTech.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Aoxe.Extensions\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Stars](https://img.shields.io/github/stars/AoxeTech/Aoxe.Extensions.svg)](https://github.com/AoxeTech/Aoxe.Extensions/stargazers)\n[![Forks](https://img.shields.io/github/forks/AoxeTech/Aoxe.Extensions.svg)](https://github.com/AoxeTech/Aoxe.Extensions/network/members)\n\n---\n\nAoxe.Extensions is a powerful C# library that provides a rich set of extension methods to enhance your development experience and boost productivity. Our goal is to simplify common programming tasks and make your code more readable and maintainable.\n\n## 🚀 Features\n\n- 🧩 Extensive collection of extension methods for built-in C# types\n- 🎯 Designed to reduce boilerplate code and improve readability\n- 🔧 Easy to use with a fluent API design\n- 📚 Comprehensive documentation and examples\n- ⚡ High-performance implementations\n- 🔒 Thread-safe operations where applicable\n- 🧪 Thoroughly tested with high code coverage\n\n## 📦 Installation\n\nInstall Aoxe.Extensions via Clr:\n\n```bash\nPM\u003e Install-Package Aoxe.Extensions\n```\n\n## 🔧 Usage\n\nTo use Aoxe.Extensions in your project, add the following using statement:\n\n```csharp\nusing Aoxe.Extensions;\n```\n\n## 🌟 Examples\n\nAoxe.Extensions is based on the idea of fluent style, providing a huge number of extension methods to extend C#, thus making the C# language more readable.\n\n```csharp\n// Exception handling\ntry\n{\n    throw new InvalidOperationException(\"Outer\", \n        new ArgumentException(\"Inner\", \n            new NullReferenceException(\"Inmost\")));\n}\ncatch (Exception ex)\n{\n    var inmostException = ex.GetInmostException();\n    Console.WriteLine($\"Inmost exception message: {inmostException.Message}\");\n    // Output: Inmost exception message: Inmost\n}\n\n// String extensions\nstring text = \"Hello, World!\";\nConsole.WriteLine(text.IsNullOrEmpty());  // False\nConsole.WriteLine(text.Truncate(8));      // \"Hello...\"\n\n// Collection extensions\nvar numbers = new List\u003cint\u003e { 1, 2, 3, 4, 5 };\nConsole.WriteLine(numbers.IsNullOrEmpty());  // False\nvar evenNumbers = numbers.Where(n =\u003e n % 2 == 0);\nConsole.WriteLine(string.Join(\", \", evenNumbers));  // 2, 4\n\n// DateTime extensions\nvar date = DateTime.UtcNow;\nConsole.WriteLine(date.ToUnixTimeSeconds());\n\n// Enum extensions\npublic enum Color { Red, Green, Blue }\nvar color = Color.Red;\nConsole.WriteLine(color.GetDescription());\n\n// Numeric extensions\nint number = 42;\nConsole.WriteLine(number.IsEven());  // True\n```\n\nThese examples showcase potential usage of extension methods that might be included in the Aoxe.Extensions library. The actual implementation and available methods may vary, so it's recommended to refer to the official documentation or source code for accurate usage information.\n\n[Source: https://github.com/AoxeTech/Aoxe.Extensions]\n\n---\n\nThank`s for [JetBrains](https://www.jetbrains.com/) for the great support in providing assistance and user-friendly environment for my open source projects.\n\n[![JetBrains](https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.svg?_gl=1*f25lxa*_ga*MzI3ODk2MjY0LjE2NzA0NjY4MDQ.*_ga_9J976DJZ68*MTY4OTY4NzY5OS4zNC4xLjE2ODk2ODgwMDAuNTMuMC4w)](https://www.jetbrains.com/community/opensource/#support)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faoxetech%2Faoxe.extensions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faoxetech%2Faoxe.extensions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faoxetech%2Faoxe.extensions/lists"}