An open API service indexing awesome lists of open source software.

https://github.com/joshcamas/cached-reflection

Bite-sized reflection cacher for C# to make reflection speedy fast
https://github.com/joshcamas/cached-reflection

csharp reflection unity3d

Last synced: about 2 months ago
JSON representation

Bite-sized reflection cacher for C# to make reflection speedy fast

Awesome Lists containing this project

README

          

# cached-reflection
Bite-sized reflection cacher for C# to make reflection speedy fast by caching fields, methods, and properties.
I personally use it for my projects in Unity3D :)

### Usage

```C#
FieldInfo field = ReflectionCache.GetField(myType, fieldName);
MethodInfo method = ReflectionCache.GetMethod(myType, methodName);
PropertyInfo property = ReflectionCache.GetProperty(myType, propertyName);
```