Example #1
0
        public ReElement Copy()
        {
            ReElement thiscopy = new ReElement();

            thiscopy._Value           = this._Value;
            thiscopy._Frequence       = this._Frequence;
            thiscopy._FilterType      = this._FilterType;
            thiscopy._FollowedOperand = this._FollowedOperand;
            return(thiscopy);
        }
Example #2
0
 public bool Contains(ReElement reElement)
 {
     foreach (ReElement element in this)
     {
         if (element.Value.ToLower() == reElement.Value.ToLower())
         {
             return(true);
         }
     }
     return(false);
 }
Example #3
0
 public void Remove(ReElement reElement)
 {
     this.InnerList.Remove(reElement);
 }
Example #4
0
 public int Add(ReElement reElement)
 {
     return(this.InnerList.Add(reElement));
 }