コード例 #1
0
 public ValidationResult Remove(ValidationError error)
 {
     if (_erros.Contains(error))
         _erros.Remove(error);
     return this;
 }
コード例 #2
0
 public ValidationResult Add(ValidationError error)
 {
     _erros.Add(error);
     return this;
 }