public void Invoke()
 {
     if (invokable == null)
     {
         Cache();
     }
     if (_dynamic)
     {
         InvokableEvent call = invokable as InvokableEvent;
         call.Invoke();
     }
     else
     {
         invokable.Invoke(Args);
     }
 }
Esempio n. 2
0
        public void Invoke()
        {
            if (Invokable == null)
            {
                Cache();
            }

            if (m_Dynamic)
            {
                InvokableEvent call = Invokable as InvokableEvent;
                call.Invoke();
            }
            else
            {
                Invokable.Invoke(Arguments);
            }
        }