Expression.Assign(Expression, Expression) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
할당 연산을 나타내는 BinaryExpression을 만듭니다.
public:
static System::Linq::Expressions::BinaryExpression ^ Assign(System::Linq::Expressions::Expression ^ left, System::Linq::Expressions::Expression ^ right);
public static System.Linq.Expressions.BinaryExpression Assign (System.Linq.Expressions.Expression left, System.Linq.Expressions.Expression right);
static member Assign : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression -> System.Linq.Expressions.BinaryExpression
Public Shared Function Assign (left As Expression, right As Expression) As BinaryExpression
매개 변수
- left
- Expression
Expression 속성에 설정할 Left입니다.
- right
- Expression
Expression 속성에 설정할 Right입니다.
반환
BinaryExpression 속성이 NodeType이고 Assign 및 Left 속성이 지정된 값으로 설정된 Right입니다.
예제
다음 코드 예제에서는 할당 작업을 나타내는 식을 만드는 방법을 보여 줍니다.
// Add the following directive to your file:
// using System.Linq.Expressions;
// To demonstrate the assignment operation, we create a variable.
ParameterExpression variableExpr = Expression.Variable(typeof(String), "sampleVar");
// This expression represents the assignment of a value
// to a variable expression.
// It copies a value for value types, and
// copies a reference for reference types.
Expression assignExpr = Expression.Assign(
variableExpr,
Expression.Constant("Hello World!")
);
// The block expression allows for executing several expressions sequentually.
// In this block, we pass the variable expression as a parameter,
// and then assign this parameter a value in the assign expression.
Expression blockExpr = Expression.Block(
new ParameterExpression[] { variableExpr },
assignExpr
);
// Print out the assign expression.
Console.WriteLine(assignExpr.ToString());
// The following statement first creates an expression tree,
// then compiles it, and then executes it.
Console.WriteLine(Expression.Lambda<Func<String>>(blockExpr).Compile()());
// This code example produces the following output:
//
// (sampleVar = "Hello World!")
// Hello World!
' Add the following directive to your file:
' Imports System.Linq.Expressions
' To demonstrate the assignment operation, create a variable.
Dim variableExpr As ParameterExpression = Expression.Variable(GetType(String), "sampleVar")
' This expression represents the assignment of a value
' to a variable expression.
' It copies a value for value types, and it
' copies a reference for reference types.
Dim assignExpr As Expression = Expression.Assign(
variableExpr,
Expression.Constant("Hello World!")
)
' The block expression allows for executing several expressions sequentually.
' In this block, you pass the variable expression as a parameter,
' and then assign this parameter a value in the assign expression.
Dim blockExpr As Expression = Expression.Block(
New ParameterExpression() {variableExpr}, assignExpr
)
' Print the assign expression.
Console.WriteLine(assignExpr.ToString())
' The following statement first creates an expression tree,
' then compiles it, and then executes it.
Console.WriteLine(Expression.Lambda(Of Func(Of String))(blockExpr).Compile()())
' This code example produces the following output:
'
' (sampleVar = "Hello World!")
' Hello World!
설명
식은 Assign
값 형식에 대한 값을 복사하고 참조 형식에 대한 참조를 복사합니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET