Skip to content

Instantly share code, notes, and snippets.

View sviataslau's full-sized avatar

Slava Seviaryn sviataslau

View GitHub Profile
@SergeyTeplyakov
SergeyTeplyakov / MemberAccessor.cs
Created February 6, 2024 00:25
MemberAccessor
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>