CanBeRemovedFromCollection() abstract private method

abstract private CanBeRemovedFromCollection ( ConstraintCollection constraint, bool fThrowException ) : bool
constraint ConstraintCollection
fThrowException bool
return bool
Ejemplo n.º 1
0
 internal bool CanRemove(Constraint constraint, bool fThrowException)
 {
     return(constraint.CanBeRemovedFromCollection(this, fThrowException));
 }
Ejemplo n.º 2
0
 internal bool CanRemove(Constraint constraint, bool fThrowException) {
     return constraint.CanBeRemovedFromCollection(this, fThrowException);
 }