src\System\RuntimeType.CoreCLR.cs (15)
245if (candidate is RuntimeConstructorInfo candidateRCI && candidateRCI.MethodHandle.Value == method.Value)
269list = (T[])(object)new RuntimeConstructorInfo[1]
753private RuntimeConstructorInfo[] PopulateConstructors(Filter filter)
757return Array.Empty<RuntimeConstructorInfo>();
760ListBuilder<RuntimeConstructorInfo> list = default;
800RuntimeConstructorInfo runtimeConstructorInfo =
1460private MemberInfoCache<RuntimeConstructorInfo>? m_constructorInfoCache;
1721internal RuntimeConstructorInfo[] GetConstructorList(MemberListType listType, string? name)
2272RuntimeConstructorInfo constructor, BindingFlags bindingFlags, CallingConventions callConv, Type[]? argumentTypes)
2556RuntimeConstructorInfo[] cache = Cache.GetConstructorList(listType, name);
2561RuntimeConstructorInfo constructorInfo = cache[i];
3198private static RuntimeConstructorInfo? GetConstructorWithSameMetadataDefinitionAs(RuntimeType runtimeType, MemberInfo constructor)
3200RuntimeConstructorInfo[] cache = runtimeType.Cache.GetConstructorList(MemberListType.CaseSensitive, constructor.Name);
3204RuntimeConstructorInfo candidate = cache[i];
3910if (FilterApplyConstructorInfo((RuntimeConstructorInfo)candidates[i], bindingAttr, CallingConventions.Any, argsType))