TupleElementNamesAttribute 建構函式
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
TupleElementNamesAttribute() |
>初始化 TupleElementNamesAttribute 類別的新實例。 |
TupleElementNamesAttribute(String[]) |
初始化 TupleElementNamesAttribute 類別的新實例。 |
>初始化 TupleElementNamesAttribute 類別的新實例。
public:
TupleElementNamesAttribute();
public TupleElementNamesAttribute ();
Public Sub New ()
適用於
.NET Core 1.0
產品 | 版本 |
---|---|
.NET | Core 1.0 |
初始化 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
值。
適用於
.NET 9 及其他版本
產品 | 版本 |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |