Exemplo n.º 1
0
 public virtual void Assign(ExprBase <ResultType> expr)
 {
     if (this != expr)
     {
         Str        = expr.Str;
         Context    = expr.Context;
         IsCompiled = expr.IsCompiled;
     }
 }
Exemplo n.º 2
0
 public ExprBase(ExprBase <ResultType> other)
 {
     Context    = other.Context;
     Str        = other.Str;
     IsCompiled = other.IsCompiled;
 }