src\System\RuntimeType.CoreCLR.cs (15)
250if (candidate is RuntimeConstructorInfo candidateRCI && candidateRCI.MethodHandle.Value == method.Value)
274list = (T[])(object)new RuntimeConstructorInfo[1]
754private RuntimeConstructorInfo[] PopulateConstructors(Filter filter)
758return Array.Empty<RuntimeConstructorInfo>();
761ListBuilder<RuntimeConstructorInfo> list = default;
794RuntimeConstructorInfo runtimeConstructorInfo =
1448private MemberInfoCache<RuntimeConstructorInfo>? m_constructorInfoCache;
1726internal RuntimeConstructorInfo[] GetConstructorList(MemberListType listType, string? name)
2261RuntimeConstructorInfo constructor, BindingFlags bindingFlags, CallingConventions callConv, Type[]? argumentTypes)
2545RuntimeConstructorInfo[] cache = Cache.GetConstructorList(listType, name);
2550RuntimeConstructorInfo constructorInfo = cache[i];
3171private static RuntimeConstructorInfo? GetConstructorWithSameMetadataDefinitionAs(RuntimeType runtimeType, MemberInfo constructor)
3173RuntimeConstructorInfo[] cache = runtimeType.Cache.GetConstructorList(MemberListType.CaseSensitive, constructor.Name);
3177RuntimeConstructorInfo candidate = cache[i];
3901if (FilterApplyConstructorInfo((RuntimeConstructorInfo)candidates[i], bindingAttr, CallingConventions.Any, argsType))