EmitAnd() public method

Emit 'and' instruction with specified arguments.
public EmitAnd ( ) : void
return void
Exemplo n.º 1
0
		private void EvaluateCore( TracingILGenerator il )
		{
			for ( int i = 0; i < this._expressions.Count; i++ )
			{
				this._expressions[ i ].LoadValue( il, false );

				if ( i > 0 )
				{
					il.EmitAnd();
				}
			}
		}