Mono.CSharp.DelegateInvocation.EmitStatement C# (CSharp) Méthode

EmitStatement() public méthode

public EmitStatement ( EmitContext ec ) : void
ec EmitContext
Résultat 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);
		}