Share via


IFieldSymbol.CorrespondingTupleField Property

Definition

If this field represents a tuple element, returns a corresponding default element field. Otherwise returns null.

public:
 property Microsoft::CodeAnalysis::IFieldSymbol ^ CorrespondingTupleField { Microsoft::CodeAnalysis::IFieldSymbol ^ get(); };
public Microsoft.CodeAnalysis.IFieldSymbol CorrespondingTupleField { get; }
public Microsoft.CodeAnalysis.IFieldSymbol? CorrespondingTupleField { get; }
member this.CorrespondingTupleField : Microsoft.CodeAnalysis.IFieldSymbol
Public ReadOnly Property CorrespondingTupleField As IFieldSymbol

Property Value

Remarks

A tuple type will always have default elements such as Item1, Item2, Item3... This API allows matching a field that represents a named element, such as "Alice" to the corresponding default element field such as "Item1"

Applies to