예제 #1
0
 public void OutStack(CLS_Content expr)
 {
     if (!useDebug)
     {
         return;
     }
     if (stackContent.Peek() != expr)
     {
         throw new Exception("OutStackContent error:" + expr.ToString() + " err:" + stackContent.Peek().ToString());
     }
     stackContent.Pop();
 }
예제 #2
0
 public void OutStack(CLS_Content expr)
 {
     if (!useDebug) return;
     if (stackContent.Peek() != expr)
     {
         throw new Exception("OutStackContent error:" + expr.ToString() + " err:" + stackContent.Peek().ToString());
     }
     stackContent.Pop();
 }