Expression.AndAssign Method (Expression, Expression, MethodInfo)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a BinaryExpression that represents a bitwise AND assignment operation.
Assembly: System.Core (in System.Core.dll)
'Declaration Public Shared Function AndAssign ( _ left As Expression, _ right As Expression, _ method As MethodInfo _ ) As BinaryExpression
Parameters
- left
- Type: System.Linq.Expressions.Expression
An Expression to set the Left property equal to.
- right
- Type: System.Linq.Expressions.Expression
An Expression to set the Right property equal to.
- method
- Type: System.Reflection.MethodInfo
A MethodInfo to set the Method property equal to.
Return Value
Type: System.Linq.Expressions.BinaryExpressionA BinaryExpression that has the NodeType property equal to AndAssign and the Left, Right, and Method properties set to the specified values.
Show: