7 references to RuntimeMethodHelpers
System.Private.CoreLib (7)
System\Reflection\Runtime\MethodInfos\RuntimeNamedMethodInfo.cs (2)
221return RuntimeMethodHelpers.ComputeToString(ref _common, contextMethod, contextMethod.RuntimeGenericArgumentsOrParameters); 234return RuntimeMethodHelpers.GetRuntimeParameters(ref _common, contextMethod, contextMethod.RuntimeGenericArgumentsOrParameters, out returnParameter);
System\Reflection\Runtime\MethodInfos\RuntimePlainConstructorInfo.cs (2)
144return RuntimeMethodHelpers.ComputeToString(ref _common, this, Array.Empty<RuntimeTypeInfo>()); 153return _lazyParameters ??= RuntimeMethodHelpers.GetRuntimeParameters(ref _common, this, Array.Empty<RuntimeTypeInfo>(), out _);
System\Reflection\Runtime\MethodInfos\RuntimeSyntheticConstructorInfo.cs (1)
123return RuntimeMethodHelpers.ComputeToString(this, Array.Empty<RuntimeTypeInfo>(), RuntimeParameters, returnParameter: null);
System\Reflection\Runtime\MethodInfos\RuntimeSyntheticMethodInfo.cs (1)
155return RuntimeMethodHelpers.ComputeToString(this, Array.Empty<RuntimeTypeInfo>(), RuntimeParameters, RuntimeReturnParameter);
System\Reflection\Runtime\PropertyInfos\RuntimePropertyInfo.cs (1)
227sb.Append(RuntimeMethodHelpers.ComputeParametersString(indexRuntimeParameters));