Expression.NewArrayBounds メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したランクを持つ配列の作成を表す NewArrayExpression を作成します。
オーバーロード
NewArrayBounds(Type, Expression[]) |
指定したランクを持つ配列の作成を表す NewArrayExpression を作成します。 |
NewArrayBounds(Type, IEnumerable<Expression>) |
指定したランクを持つ配列の作成を表す NewArrayExpression を作成します。 |
NewArrayBounds(Type, Expression[])
指定したランクを持つ配列の作成を表す 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
パラメーター
- bounds
- Expression[]
Expression コレクションへの読み込みに使用する Expressions オブジェクトの配列。
戻り値
NewArrayExpression と等しい NodeType プロパティおよび指定した値に設定された NewArrayBounds プロパティを含む Expressions。
例外
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 を作成します。
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
パラメーター
- bounds
- IEnumerable<Expression>
IEnumerable<T> コレクションへの読み込みに使用する Expression オブジェクトを含む Expressions。
戻り値
NewArrayExpression と等しい NodeType プロパティおよび指定した値に設定された NewArrayBounds プロパティを含む Expressions。
例外
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、整数型を表す必要があります。
適用対象
.NET