Share via


SyntaxFacts.IsReservedTupleElementName(String) Method

Definition

Checks whether the element name is reserved.

For example: "Item3" is reserved (at certain positions). "Rest", "ToString" and other members of System.ValueTuple are reserved (in any position). Names that are not reserved return false.

public:
 static bool IsReservedTupleElementName(System::String ^ elementName);
public static bool IsReservedTupleElementName (string elementName);
static member IsReservedTupleElementName : string -> bool
Public Function IsReservedTupleElementName (elementName As String) As Boolean

Parameters

elementName
String

Returns

Applies to