예제 #1
0
파일: compiler.cs 프로젝트: ydunk/masters
        public virtual ForEachAction CreateForEachAction()
        {
            ForEachAction action = new ForEachAction();

            action.Compile(this);
            return(action);
        }
예제 #2
0
파일: compiler.cs 프로젝트: ArildF/masters
 public virtual ForEachAction CreateForEachAction() {
     ForEachAction action = new ForEachAction();
     action.Compile(this);
     return action;
 }