Ejemplo n.º 1
0
        public bool AddIfNotExists([NotNull] T item)
        {
            if (item is null)
            {
                ExceptionThrower.ThrowArgumentNullException(nameof(item));
            }

            return(Extensions.AddIfNotExists(this, item));
        }