InvokeDelegate() public method

public InvokeDelegate ( ITypeMapper typeMapper ) : ContextualOperand
typeMapper ITypeMapper
return ContextualOperand
Ejemplo n.º 1
0
        public void InvokeDelegate(Operand targetDelegate, params Operand[] args)
        {
            if ((object)targetDelegate == null)
            {
                throw new ArgumentNullException(nameof(targetDelegate));
            }

            DoInvoke(targetDelegate.InvokeDelegate(TypeMapper, args));
        }
Ejemplo n.º 2
0
        public void InvokeDelegate(Operand targetDelegate, params Operand[] args)
        {
            if ((object)targetDelegate == null)
            {
                throw new ArgumentNullException("targetDelegate");
            }

            DoInvoke(targetDelegate.InvokeDelegate(args));
        }
		public void InvokeDelegate(Operand targetDelegate, params Operand[] args)
		{
			if ((object)targetDelegate == null)
				throw new ArgumentNullException("targetDelegate");

			DoInvoke(targetDelegate.InvokeDelegate(args));
		}