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, ... cli::array <System::Linq::Expressions::Expression ^> ^ bounds);
public static System.Linq.Expressions.NewArrayExpression NewArrayBounds (Type type, params System.Linq.Expressions.Expression[] bounds);
static member NewArrayBounds : Type * System.Linq.Expressions.Expression[] -> System.Linq.Expressions.NewArrayExpression
Public Shared Function NewArrayBounds (type As Type, ParamArray bounds As Expression()) As NewArrayExpression

パラメーター

type
Type

配列の要素の型を表す Type

bounds
Expression[]

Expression コレクションへの読み込みに使用する Expressions オブジェクトの配列。

戻り値

NewArrayExpression と等しい NodeType プロパティおよび指定した値に設定された NewArrayBounds プロパティを含む Expressions

例外

type または boundsnull です。

- または -

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)
' Create an expression tree that represents creating a string
' array with rank 2 and bounds (3,2).
Dim newArrayExpression As System.Linq.Expressions.NewArrayExpression = _
    System.Linq.Expressions.Expression.NewArrayBounds( _
            Type.GetType("System.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)

注釈

結果NewArrayExpressionの プロパティはType、ランクが の長さとbounds等しく、要素型が であるtype配列型を表します。

の各要素boundsの プロパティはType、整数型を表す必要があります。

適用対象

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);
public static System.Linq.Expressions.NewArrayExpression NewArrayBounds (Type type, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> bounds);
static member NewArrayBounds : Type * seq<System.Linq.Expressions.Expression> -> System.Linq.Expressions.NewArrayExpression
Public Shared Function NewArrayBounds (type As Type, bounds As IEnumerable(Of Expression)) As NewArrayExpression

パラメーター

type
Type

配列の要素の型を表す Type

bounds
IEnumerable<Expression>

IEnumerable<T> コレクションへの読み込みに使用する Expression オブジェクトを含む Expressions

戻り値

NewArrayExpression と等しい NodeType プロパティおよび指定した値に設定された NewArrayBounds プロパティを含む Expressions

例外

type または boundsnull です。

- または -

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)
' Create an expression tree that represents creating a string
' array with rank 2 and bounds (3,2).
Dim newArrayExpression As System.Linq.Expressions.NewArrayExpression = _
    System.Linq.Expressions.Expression.NewArrayBounds( _
            Type.GetType("System.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)

注釈

結果NewArrayExpressionの プロパティはType、ランクが の長さとbounds等しく、要素型が であるtype配列型を表します。

の各要素boundsの プロパティはType、整数型を表す必要があります。

適用対象