Base:
property
TupleElementTypesWithAnnotations
Microsoft.CodeAnalysis.CSharp.Symbols.TypeSymbol.TupleElementTypesWithAnnotations
14 references to TupleElementTypesWithAnnotations
Microsoft.CodeAnalysis.CSharp (14)
Binder\Binder_Conversions.cs (1)
2478
var targetElementTypes = targetType.
TupleElementTypesWithAnnotations
;
Binder\Semantics\OverloadResolution\MethodTypeInference.cs (2)
715
var destTypes = destination.
TupleElementTypesWithAnnotations
;
912
var destTypes = destination.
TupleElementTypesWithAnnotations
;
Binder\Semantics\OverloadResolution\OverloadResolution.cs (1)
3338
var destTypes = destination.
TupleElementTypesWithAnnotations
;
Compilation\CSharpCompilation.cs (1)
4159
tupleType.
TupleElementTypesWithAnnotations
.ZipAsArray(
Lowering\LocalRewriter\LocalRewriter_Conversion.cs (1)
955
var destElementTypes = rewrittenType.
TupleElementTypesWithAnnotations
;
Symbols\Metadata\PE\TupleTypeDecoder.cs (1)
292
int tupleCardinality = decodedType.
TupleElementTypesWithAnnotations
.Length;
Symbols\Tuples\TupleErrorFieldSymbol.cs (2)
195
Debug.Assert(newOwner.IsTupleType && newOwner.
TupleElementTypesWithAnnotations
.Length > TupleElementIndex);
212
newOwner.
TupleElementTypesWithAnnotations
[TupleElementIndex],
Symbols\Tuples\TupleTypeSymbol.cs (3)
129
Debug.Assert(
TupleElementTypesWithAnnotations
.Length == newElementTypes.Length);
167
Debug.Assert(newElementNames.IsDefault || this.
TupleElementTypesWithAnnotations
.Length == newElementNames.Length);
575
var elementTypes =
TupleElementTypesWithAnnotations
;
Symbols\TypeSymbolExtensions.cs (1)
600
elementTypes = ((NamedTypeSymbol)type).
TupleElementTypesWithAnnotations
;
Symbols\TypeUnification.cs (1)
279
var typeParts = namedType.IsTupleType ? namedType.
TupleElementTypesWithAnnotations
: namedType.TypeArgumentsWithAnnotationsNoUseSiteDiagnostics;