TupleElementNamesAttribute 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
TupleElementNamesAttribute() |
>初始化 TupleElementNamesAttribute 類別的新實例。 |
TupleElementNamesAttribute(String[]) |
初始化 TupleElementNamesAttribute 類別的新實例。 |
TupleElementNamesAttribute()
>初始化 TupleElementNamesAttribute 類別的新實例。
public:
TupleElementNamesAttribute();
public TupleElementNamesAttribute ();
Public Sub New ()
適用於
TupleElementNamesAttribute(String[])
初始化 TupleElementNamesAttribute 類別的新實例。
public:
TupleElementNamesAttribute(cli::array <System::String ^> ^ transformNames);
public TupleElementNamesAttribute (string?[] transformNames);
public TupleElementNamesAttribute (string[] transformNames);
new System.Runtime.CompilerServices.TupleElementNamesAttribute : string[] -> System.Runtime.CompilerServices.TupleElementNamesAttribute
Public Sub New (transformNames As String())
參數
- transformNames
- String[]
字串陣列,指定類型建構的預先順序深度優先周遊,其值 Tuple 發生次數是用來攜帶元素名稱。
備註
此建構函式用於包含具有元素名稱之值 Tuple 實例的類型。 例如,如果 C
是具有兩個型別參數的泛型型別,則使用建構型別 C(
ValueTuple<T1,T2>,
ValueTuple<T1,T2,T3>)
可能會將第一個型別自變數視為具有元素名稱的元組,而第二個類型則視為不含元素名稱的 Tuple。 在此情況下,適當的屬性規格應該使用 { "name1", "name2", null, null, null}
transformNames
值。