Class IfcCollectionT

IfcCollection<T> class

public class IfcCollection<T> : IfcCollection, IEnumerable<T>

Constructors

NameDescription
IfcCollection(Type)

Properties

NameDescription
Count { get; }
Item { get; set; }
TypeOfT { get; }Gets or sets the type of items in the collection.

Methods

NameDescription
Add(T)
Contains(T)
FirstOrDefault()Firsts the or default item from the collection.
FirstOrDefault(IfcPredicate<T>)Firsts the or default item from the collection that satisfy the predicate.
GetEnumerator()Returns an enumerator that iterates through the collection.
Select<TOut>(IfcSelect<T, TOut>)Selects the specified select.
ToList()To the list.
override TryAddItemAsObject(object)
Where(IfcPredicate<T>)Wheres the specified predicate.

See Also