Mono.CSharp.DelegateInvocation.EmitStatement C# (CSharp) Method

EmitStatement() public method

public EmitStatement ( EmitContext ec ) : void
ec EmitContext
return void
		public override void EmitStatement (EmitContext ec)
		{
			Emit (ec);
			// 
			// Pop the return value if there is one
			//
			if (type != TypeManager.void_type)
				ec.Emit (OpCodes.Pop);
		}