<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />

ObjectConstructor<T>

public sealed delegate ObjectConstructor<T> : MulticastDelegate
Represents a method that constructs an object.
using System.Runtime.CompilerServices; namespace Newtonsoft.Json.Serialization { public delegate object ObjectConstructor<[System.Runtime.CompilerServices.Nullable(2)] T> ([System.Runtime.CompilerServices.Nullable(new byte[] { 1, 2 })] params object[] args); }