PredicatedCollection.Add(T) Method - Kalkwst/Risotto GitHub Wiki

PredicatedCollection<T>.Add(T) Method

Definition

Namespace: Risotto.Collections

In this article

Definition

See also

Adds an item to the PredicatedCollection after it is validated by the collection's predicate.

public void Add(T item);

Parameters

item T

The object to add to the PredicatedCollection<T>.

Exceptions

ArgumentException

The collection's internal predicate did not evaluate the item as true.

See also