IWrappedDictionary
using System.Collections;
using System.Runtime.CompilerServices;
namespace Newtonsoft.Json.Utilities
{
internal interface IWrappedDictionary : IDictionary, ICollection, IEnumerable
{
[System.Runtime.CompilerServices.Nullable(1)]
object UnderlyingDictionary {
[System.Runtime.CompilerServices.NullableContext(1)]
get;
}
}
}