Exemplo n.º 1
0
 ///<summary>Returns a collection of all items except those that match the flag specified.</summary>
 public virtual ModelRanges <T> FindFlag(ModelValueFlags flag, bool include)
 {
     //Delegate
     return((ModelRanges <T>)base.FindFlag((int)flag, include));
 }
Exemplo n.º 2
0
 ///<summary>Returns a collection of all items that match the flag specified.</summary>
 public virtual ModelRanges <T> FindFlag(ModelValueFlags flag)
 {
     //Delegate
     return(this.FindFlag(flag, true));
 }