ImmediateReflection documentation

Badges

Build AppVeyor Build Status
Coverage Coveralls Coverage Status SonarQube SonarCloud Coverage
Quality Quality Gate
Nuget Nuget status
License GitHub license

Introduction

This is .NET library that aims to provide a faster usage of C# reflection features. Especially the usage of constructor, members accessors (get/set) and attributes.

It provides these features while trying to keep an API as similar as the standard Reflection API (Fully documented and ReSharper compliant).

To see how powerful the library is you can consult some benchmarks there.

The library is highly tested to cover as much as possible real cases, because using Reflection is some kind of core code and must be reliable to build on it.

You can find library sources on GitHub.

Targets

  • .NET Standard 2.0+
  • .NET Core 2.0+
  • .NET Framework 4.0+

Supports Source Link

Installation

ImmediateReflection is available on NuGet

PM> Install-Package ImmediateReflection
  • Improve this Doc
In This Article
Back to top ImmediateReflection