src\System\RuntimeType.CoreCLR.cs (15)
243if (candidate is RuntimeConstructorInfo candidateRCI && candidateRCI.MethodHandle.Value == method.Value)
267list = (T[])(object)new RuntimeConstructorInfo[1]
736private RuntimeConstructorInfo[] PopulateConstructors(Filter filter)
740return Array.Empty<RuntimeConstructorInfo>();
743ListBuilder<RuntimeConstructorInfo> list = default;
776RuntimeConstructorInfo runtimeConstructorInfo =
1410private MemberInfoCache<RuntimeConstructorInfo>? m_constructorInfoCache;
1670internal RuntimeConstructorInfo[] GetConstructorList(MemberListType listType, string? name)
2221RuntimeConstructorInfo constructor, BindingFlags bindingFlags, CallingConventions callConv, Type[]? argumentTypes)
2505RuntimeConstructorInfo[] cache = Cache.GetConstructorList(listType, name);
2510RuntimeConstructorInfo constructorInfo = cache[i];
3147private static RuntimeConstructorInfo? GetConstructorWithSameMetadataDefinitionAs(RuntimeType runtimeType, MemberInfo constructor)
3149RuntimeConstructorInfo[] cache = runtimeType.Cache.GetConstructorList(MemberListType.CaseSensitive, constructor.Name);
3153RuntimeConstructorInfo candidate = cache[i];
3858if (FilterApplyConstructorInfo((RuntimeConstructorInfo)candidates[i], bindingAttr, CallingConventions.Any, argsType))