public ILetterSimpleSet <T> Add(T item, out bool success)
 {
     success = Add(item);
     return(success ? _Factory.OnAdd(this) : this);
 }