Info
Version: | 0.0.7 |
Author(s): | Nexus Software Labs |
Last Update: | Thursday, August 26, 2021 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/ncosentino/NexusLabs.Framework/tree/master/NexusLabs.Reflection |
NuGet Url: | https://www.nuget.org/packages/NexusLabs.Reflection |
Install
Install-Package NexusLabs.Reflection
dotnet add package NexusLabs.Reflection
paket add NexusLabs.Reflection
NexusLabs.Reflection Download (Unzip the "nupkg" after downloading)
Dependencies
.NETStandard 2.0
- NexusLabs.Contracts(>= 0.0.3)
- NexusLabs.Contracts(>= 0.0.3)
Tags
Many of these are encapsulated into extension methods and are the byproduct of writing similar code many times for other projects.
Some examples include interacting with private methods, properties, and fields of objects. Additionally, having shorter syntax for creating instances of types you might need reflection for (i.e.
for private nested types) can make code easier to read.
While reflection is powerful, internally we often use this library when ensapsulating some less-than-ideal interactions with third party libraries we don't have much control over. For example, there are some coded test scenarios where inaccessible objects needed to be created and this library provided that ability.