NUnit.Framework.Constraints.PrefixOperator
PrefixOperator takes a single constraint and modifies
its action in some way.
namespace NUnit.Framework.Constraints
{
public abstract class PrefixOperator : ConstraintOperator
{
public abstract IConstraint ApplyPrefix(IConstraint constraint);
protected PrefixOperator();
}
}