DivideAssign Method (Expression, Expression)
Collapse the table of content
Expand the table of content

Expression.DivideAssign Method (Expression, Expression)

[ 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 division assignment operation that does not have overflow checking.

Namespace:  System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)

public static BinaryExpression DivideAssign(
	Expression left,
	Expression right
)

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.

Return Value

Type: System.Linq.Expressions.BinaryExpression
A BinaryExpression that has the NodeType property equal to DivideAssign and the Left and Right properties set to the specified values.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft