Click or drag to resize

RankedBagTFirst Method

Gets the minimum item in the bag per the comparer.

Namespace:  Kaos.Collections
Assembly:  KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax
C#
public T First()

Return Value

Type: T
The minimum item in the bag.
Exceptions
ExceptionCondition
InvalidOperationExceptionWhen Count is zero.
Remarks
This is a O(1) operation.
See Also