This documentation is archived and is not being maintained.
Expression.ModuloAssign Method (Expression, Expression, MethodInfo, LambdaExpression)
Visual Studio 2010
Creates a BinaryExpression that represents a remainder assignment operation.
Assembly: System.Core (in System.Core.dll)
public static BinaryExpression ModuloAssign( Expression left, Expression right, MethodInfo method, LambdaExpression conversion )
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.
- conversion
- Type: System.Linq.Expressions.LambdaExpression
A LambdaExpression to set the Conversion property equal to.
Return Value
Type: System.Linq.Expressions.BinaryExpressionA BinaryExpression that has the NodeType property equal to ModuloAssign and the Left, Right, Method, and Conversion properties set to the specified values.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: