This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace MemberAccessors | |
{ | |
using System.Collections.Concurrent; | |
using System.Linq.Expressions; | |
using System.Reflection; | |
#nullable enable | |
/// <summary> | |
/// A helper class for accessing fields and properties of an object in a performant way. | |
/// </summary> | |
public class MemberAccessor<T> |