Expression.NewArrayBounds 方法

定義

建立 NewArrayExpression,其代表建立具有指定之陣序的陣列。

多載

NewArrayBounds(Type, Expression[])

建立 NewArrayExpression,其代表建立具有指定之陣序的陣列。

NewArrayBounds(Type, IEnumerable<Expression>)

建立 NewArrayExpression,其代表建立具有指定之陣序的陣列。

NewArrayBounds(Type, Expression[])

來源:
NewArrayExpression.cs
來源:
NewArrayExpression.cs
來源:
NewArrayExpression.cs

建立 NewArrayExpression,其代表建立具有指定之陣序的陣列。

public static System.Linq.Expressions.NewArrayExpression NewArrayBounds (Type type, params System.Linq.Expressions.Expression[] bounds);

參數

type
Type

Type,代表陣列的項目類型。

bounds
Expression[]

用以填入 Expression 集合之 Expressions 物件的陣列。

傳回

NewArrayExpression,其 NodeType 屬性等於 NewArrayBounds,而 Expressions 屬性設定為指定的值。

例外狀況

typeboundsnull

-或-

bounds 的項目是 null

bounds 之項目的 Type 屬性不表示整數類資料類型。

範例

下列範例示範如何使用 NewArrayBounds 方法來建立表達式樹狀結構,表示建立排名為 2 的字串數位。

// Create an expression tree that represents creating a
// two-dimensional array of type string with bounds [3,2].
System.Linq.Expressions.NewArrayExpression newArrayExpression =
    System.Linq.Expressions.Expression.NewArrayBounds(
            typeof(string),
            System.Linq.Expressions.Expression.Constant(3),
            System.Linq.Expressions.Expression.Constant(2));

// Output the string representation of the Expression.
Console.WriteLine(newArrayExpression.ToString());

// This code produces the following output:
//
// new System.String[,](3, 2)

備註

Type產生的 NewArrayExpression 屬性代表陣列類型,其排名等於的bounds長度,且其項目類型為 type

Type每個項目的 bounds 屬性都必須代表整數型別。

適用於

.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 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

NewArrayBounds(Type, IEnumerable<Expression>)

來源:
NewArrayExpression.cs
來源:
NewArrayExpression.cs
來源:
NewArrayExpression.cs

建立 NewArrayExpression,其代表建立具有指定之陣序的陣列。

public static System.Linq.Expressions.NewArrayExpression NewArrayBounds (Type type, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> bounds);

參數

type
Type

Type,代表陣列的項目類型。

bounds
IEnumerable<Expression>

IEnumerable<T>,其中包含用以填入 Expression 集合的 Expressions 物件。

傳回

NewArrayExpression,其 NodeType 屬性等於 NewArrayBounds,而 Expressions 屬性設定為指定的值。

例外狀況

typeboundsnull

-或-

bounds 的項目是 null

bounds 之項目的 Type 屬性不表示整數類資料類型。

範例

下列範例示範如何使用 NewArrayBounds 方法來建立表達式樹狀結構,表示建立排名為 2 的字串數位。

// Create an expression tree that represents creating a
// two-dimensional array of type string with bounds [3,2].
System.Linq.Expressions.NewArrayExpression newArrayExpression =
    System.Linq.Expressions.Expression.NewArrayBounds(
            typeof(string),
            System.Linq.Expressions.Expression.Constant(3),
            System.Linq.Expressions.Expression.Constant(2));

// Output the string representation of the Expression.
Console.WriteLine(newArrayExpression.ToString());

// This code produces the following output:
//
// new System.String[,](3, 2)

備註

Type產生的 NewArrayExpression 屬性代表陣列類型,其排名等於的bounds長度,且其項目類型為 type

Type每個項目的 bounds 屬性都必須代表整數型別。

適用於

.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 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0