{"id":29963223,"url":"https://github.com/lauanguermandi/fastreflections","last_synced_at":"2026-02-19T17:01:13.039Z","repository":{"id":305825233,"uuid":"963593378","full_name":"LauanGuermandi/FastReflections","owner":"LauanGuermandi","description":"FastReflections is a fast and lightweight .NET library that simplifies and speeds up access to methods, properties, and types using cached reflection and clean syntax.","archived":false,"fork":false,"pushed_at":"2025-04-11T01:03:04.000Z","size":16,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-27T03:27:23.780Z","etag":null,"topics":["dotnet","reflections","type-search"],"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/LauanGuermandi.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,"zenodo":null}},"created_at":"2025-04-09T23:16:02.000Z","updated_at":"2025-08-21T19:58:59.000Z","dependencies_parsed_at":"2025-07-22T07:56:03.890Z","dependency_job_id":"4bc6e4ba-39f6-4e7c-a959-8d110f21cf21","html_url":"https://github.com/LauanGuermandi/FastReflections","commit_stats":null,"previous_names":["lauanguermandi/fastreflections"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/LauanGuermandi/FastReflections","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LauanGuermandi%2FFastReflections","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LauanGuermandi%2FFastReflections/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LauanGuermandi%2FFastReflections/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LauanGuermandi%2FFastReflections/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LauanGuermandi","download_url":"https://codeload.github.com/LauanGuermandi/FastReflections/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LauanGuermandi%2FFastReflections/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29623546,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T13:04:20.082Z","status":"ssl_error","status_checked_at":"2026-02-19T13:03:33.775Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["dotnet","reflections","type-search"],"created_at":"2025-08-04T00:34:31.950Z","updated_at":"2026-02-19T17:01:13.016Z","avatar_url":"https://github.com/LauanGuermandi.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FastReflections\n\n**FastReflections** is a lightweight and high-performance utility library for .NET that provides fast, cached reflection-based access to methods, properties, using expressions, and types with clean and expressive syntax.\n\n---\n\n## Installation\n\n```bash\ndotnet add package FastReflections\n```\n\n---\n\n## Usage\n\n### Invoke Method\n\n```csharp\nvar instance = new MyClass();\nvar method = typeof(MyClass).GetMethod(\"SayHello\");\n\nvar result = FastReflections.Invoke\u003cMyClass, string\u003e(method, instance, \"John\");\n// result =\u003e \"Hello, John\"\n```\n\n### Get Property\n\n```csharp\nvar instance = new MyClass { Name = \"FastReflections\" };\n\nvar value = FastReflections.GetPropertyValue(instance, x =\u003e x.Name);\n// value =\u003e \"FastReflections\"\n```\n\n### Set Property\n\n```csharp\nvar instance = new MyClass();\n\nFastReflections.SetPropertyValue(instance, x =\u003e x.Name, \"Updated\");\n// instance.Name =\u003e \"Updated\"\n```\n\n### Find Type by Name\n\n```csharp\nvar type = FastReflections.GetTypeByName(\"MyNamespace.MyClass\");\n// type =\u003e typeof(MyClass)\n```\n\n---\n\n## When to Use\n\nUse `FastReflections` when:\n\n- You need dynamic access to methods and properties\n- You want performance without writing boilerplate reflection code\n- You’re building frameworks, tools, or extensible plugins\n\n---\n\n## Internals\n\n- Uses `Expression Trees` for performance\n- Thread-safe `ConcurrentDictionary` for caching\n- Automatic type cache loading via `AssemblyLoad` event\n\n---\n\n##  License\n\nMIT License © LauanGuermandi","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flauanguermandi%2Ffastreflections","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flauanguermandi%2Ffastreflections","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flauanguermandi%2Ffastreflections/lists"}