src\System\RuntimeType.CoreCLR.cs (14)
246if (candidate is RuntimeConstructorInfo candidateRCI && candidateRCI.MethodHandle.Value == method.Value)
270list = (T[])(object)new RuntimeConstructorInfo[1]
754private RuntimeConstructorInfo[] PopulateConstructors(Filter filter)
761ListBuilder<RuntimeConstructorInfo> list = default;
801RuntimeConstructorInfo runtimeConstructorInfo =
1461private MemberInfoCache<RuntimeConstructorInfo>? m_constructorInfoCache;
1722internal RuntimeConstructorInfo[] GetConstructorList(MemberListType listType, string? name)
2273RuntimeConstructorInfo constructor, BindingFlags bindingFlags, CallingConventions callConv, Type[]? argumentTypes)
2557RuntimeConstructorInfo[] cache = Cache.GetConstructorList(listType, name);
2562RuntimeConstructorInfo constructorInfo = cache[i];
3199private static RuntimeConstructorInfo? GetConstructorWithSameMetadataDefinitionAs(RuntimeType runtimeType, MemberInfo constructor)
3201RuntimeConstructorInfo[] cache = runtimeType.Cache.GetConstructorList(MemberListType.CaseSensitive, constructor.Name);
3205RuntimeConstructorInfo candidate = cache[i];
3932if (FilterApplyConstructorInfo((RuntimeConstructorInfo)candidates[i], bindingAttr, CallingConventions.Any, argsType))