예제 #1
0
파일: RENot.cs 프로젝트: CFLShine/CFL
 public override REBase Copy()
 {
     if (Operand != null)
     {
         return(new RENot(Operand.Copy()));
     }
     else
     {
         return(new RENot());
     }
 }