src\System\RuntimeType.CoreCLR.cs (15)
250if (candidate is RuntimeConstructorInfo candidateRCI && candidateRCI.MethodHandle.Value == method.Value)
274list = (T[])(object)new RuntimeConstructorInfo[1]
743private RuntimeConstructorInfo[] PopulateConstructors(Filter filter)
747return Array.Empty<RuntimeConstructorInfo>();
750ListBuilder<RuntimeConstructorInfo> list = default;
783RuntimeConstructorInfo runtimeConstructorInfo =
1416private MemberInfoCache<RuntimeConstructorInfo>? m_constructorInfoCache;
1694internal RuntimeConstructorInfo[] GetConstructorList(MemberListType listType, string? name)
2245RuntimeConstructorInfo constructor, BindingFlags bindingFlags, CallingConventions callConv, Type[]? argumentTypes)
2529RuntimeConstructorInfo[] cache = Cache.GetConstructorList(listType, name);
2534RuntimeConstructorInfo constructorInfo = cache[i];
3155private static RuntimeConstructorInfo? GetConstructorWithSameMetadataDefinitionAs(RuntimeType runtimeType, MemberInfo constructor)
3157RuntimeConstructorInfo[] cache = runtimeType.Cache.GetConstructorList(MemberListType.CaseSensitive, constructor.Name);
3161RuntimeConstructorInfo candidate = cache[i];
3885if (FilterApplyConstructorInfo((RuntimeConstructorInfo)candidates[i], bindingAttr, CallingConventions.Any, argsType))