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