Пример #1
0
		void InnerInvoke ()
		{
			if (IsContinuation) {
				invoker.Invoke (contAncestor, state, this);
			} else {
				invoker.Invoke (this, state, this);
			}
		}
Пример #2
0
 void InnerInvoke()
 {
     if (IsContinuation)
     {
         invoker.Invoke(parent, state, this);
     }
     else
     {
         invoker.Invoke(this, state, this);
     }
 }
Пример #3
0
 void InnerInvoke()
 {
     //if (IsContinuation)
     //{
     //    invoker.Invoke(contAncestor, state, this);
     //}
     //else
     //{
     invoker.Invoke(this, state, this);
     //}
 }