AssignMultiply() public method

public AssignMultiply ( Operand value ) : IStatement
value Operand
return IStatement
		public void AssignMultiply(Operand target, Operand value)
		{
			if ((object)target == null)
				throw new ArgumentNullException("target");

			BeforeStatement();

			target.AssignMultiply(value).Emit(this);
		}
Exemplo n.º 2
0
        public void AssignMultiply(Operand target, Operand value)
        {
            if ((object)target == null)
            {
                throw new ArgumentNullException("target");
            }

            BeforeStatement();

            target.AssignMultiply(value).Emit(this);
        }