System.Runtime.CompilerServices.CallSite<T>
namespace System.Runtime.CompilerServices
{
public class CallSite<T> : CallSite where T : class
{
public T Target;
public T Update { get; }
public static CallSite<T> Create(CallSiteBinder binder);
}
}