Inheritance: IDisposable
Esempio n. 1
0
 public int GetNext(int a, int b, int c, int d, int e)
 {
     if (m_cont == null)
     {
         m_cont = new Continuation();
         m_cont.Mark();
         return m_cont.Store(0);
     }
     else
     {
         m_cont.Restore(1);
         throw new Exception("not reached");
     }
 }