Is this:
public IEnumerator GetEnumerator()
{
return this.GetEnumerator();
}
Supposed to work?
Should it be:
public IEnumerator GetEnumerator()
{
return _predicates.GetEnumerator();
}
I get stack overflows when I try to for-each through a PredicateExpression...