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