Base:
property
UnderlyingMethod
Microsoft.CodeAnalysis.CSharp.Symbols.WrappedMethodSymbol.UnderlyingMethod
1 write to UnderlyingMethod
Microsoft.CodeAnalysis.CSharp (1)
Symbols\NativeIntegerTypeSymbol.cs (1)
351UnderlyingMethod = underlyingMethod;
9 references to UnderlyingMethod
Microsoft.CodeAnalysis.CSharp (9)
Emitter\Model\PEModuleBuilder.cs (1)
1455else if (methodSymbol is NativeIntegerMethodSymbol { UnderlyingMethod: MethodSymbol underlyingMethod })
Symbols\NativeIntegerTypeSymbol.cs (8)
359public override TypeWithAnnotations ReturnTypeWithAnnotations => _container.SubstituteUnderlyingType(UnderlyingMethod.ReturnTypeWithAnnotations); 371var parameters = UnderlyingMethod.Parameters.SelectAsArray((p, m) => (ParameterSymbol)new NativeIntegerParameterSymbol(m._container, m, p), this); 380if (UnderlyingMethod.TryGetThisParameter(out ParameterSymbol? underlyingThisParameter)) 394public override ImmutableArray<CustomModifier> RefCustomModifiers => UnderlyingMethod.RefCustomModifiers; 396internal override UnmanagedCallersOnlyAttributeData? GetUnmanagedCallersOnlyAttributeData(bool forceComplete) => UnderlyingMethod.GetUnmanagedCallersOnlyAttributeData(forceComplete); 409public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol.UnderlyingMethod); 411public override int GetHashCode() => UnderlyingMethod.GetHashCode(); 428=> UnderlyingMethod.TryGetOverloadResolutionPriority();