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