Base:
property
Ordinal
Microsoft.CodeAnalysis.CSharp.Symbols.ParameterSymbol.Ordinal
14 references to Ordinal
Microsoft.CodeAnalysis.CSharp (14)
Symbols\Source\ParameterHelpers.cs (1)
735if (parameter.Ordinal == 0)
Symbols\Source\SourceComplexParameterSymbol.cs (5)
428return definition.Parameters[this.Ordinal].MetadataName; 474return (SourceParameterSymbol)impl.Parameters[this.Ordinal]; 512otherAttributes = ((SourceParameterSymbol)otherPart.Parameters[this.Ordinal]).AttributeDeclarationList; 1195else if (GetEarlyDecodedWellKnownAttributeData()?.CallerArgumentExpressionParameterIndex == Ordinal) 1361if (parameter.Ordinal > Ordinal)
Symbols\Source\SourceDelegateClonedParameterSymbolForBeginAndEndInvoke.cs (1)
34Ordinal);
Symbols\Source\SourceDelegateMethodSymbol.cs (1)
375var synthesizedParam = new SourceDelegateClonedParameterSymbolForBeginAndEndInvoke(originalParam: p, newOwner: this, newOrdinal: p.Ordinal);
Symbols\Source\SourceParameterSymbol.cs (2)
138this.Ordinal, 154this.Ordinal,
Symbols\Source\SourceParameterSymbolBase.cs (3)
43&& symbol.Ordinal == this.Ordinal 49return Hash.Combine(_containingSymbol.GetHashCode(), this.Ordinal);
Symbols\Source\SourcePropertyClonedParameterSymbolForAccessors.cs (1)
13: base(originalParam, newOwner, originalParam.Ordinal, suppressOptional: false)