Exemple #1
0
 internal void Append(BindingRestrictions restrictions)
 {
     if (_unique.Add(restrictions))
     {
         Push(restrictions.GetExpression(), 0);
     }
 }
            internal void Append(BindingRestrictions restrictions)
            {
                if (_unique.Contains(restrictions))
                {
                    return;
                }
                _unique.Add(restrictions);

                Push(restrictions.GetExpression(), 0);
            }
            internal void Append(BindingRestrictions restrictions) {
                if (_unique.Contains(restrictions)) {
                    return;
                }
                _unique.Add(restrictions);

                Push(restrictions.GetExpression(), 0);
            }