1 instantiation of DefaultBinder
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\DefaultBinder.cs (1)
16internal static readonly DefaultBinder Instance = new DefaultBinder();
6 references to DefaultBinder
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\DefaultBinder.cs (1)
16internal static readonly DefaultBinder Instance = new DefaultBinder();
src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
726public static Binder DefaultBinder => System.DefaultBinder.Instance;
src\System\RuntimeType.CoreCLR.cs (4)
2858if (!System.DefaultBinder.CompareMethodSig(methodInfo, firstCandidate)) 2863return System.DefaultBinder.FindMostDerivedNewSlotMeth(candidates.ToArray(), candidates.Count) as MethodInfo; 2892return System.DefaultBinder.ExactBinding(candidates.ToArray(), types) as ConstructorInfo; 2930return System.DefaultBinder.ExactPropertyBinding(candidates.ToArray(), returnType, types);