Click or drag to resize

FastKeyedCollectionTKey, TItem Class

Represents a collection whose keys are embedded in the values that is optimized for speed.
Inheritance Hierarchy
SystemObject
  Cauldron.CollectionsFastKeyedCollectionTKey, TItem

Namespace:  Cauldron.Collections
Assembly:  Cauldron.Collections (in Cauldron.Collections.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax
C#
public class FastKeyedCollection<TKey, TItem> : IEnumerable, 
	IEnumerable<TItem>, ICollection<TItem>
where TItem : class

Type Parameters

TKey
The type of keys in the collection.
TItem
The type of items in the collection.

The FastKeyedCollectionTKey, TItem type exposes the following members.

Constructors
  NameDescription
Public methodFastKeyedCollectionTKey, TItem(FuncTItem, TKey)
Initializes a new instance of FastKeyedCollectionTKey, TItem.
Public methodFastKeyedCollectionTKey, TItem(IEnumerableTItem, FuncTItem, TKey)
Initializes a new instance of FastKeyedCollectionTKey, TItem.
Public methodFastKeyedCollectionTKey, TItem(Int32, FuncTItem, TKey)
Initializes a new instance of FastKeyedCollectionTKey, TItem.
Top
Properties
  NameDescription
Public propertyCount
Gets the number of key/value pairs contained in the FastKeyedCollectionTKey, TItem.
Public propertyIsReadOnly
Gets a value indicating whether the ICollection is read-only.
Public propertyItem
Gets or sets the value associated with the specified key.
Public propertyKeys
Gets an ICollection containing the keys of the FastKeyedCollectionTKey, TItem.
Public propertyValues
Gets an ICollection containing the values of the FastKeyedCollectionTKey, TItem.
Top
Methods
  NameDescription
Public methodAdd
Adds the specified key and value to the dictionary.
Public methodClear
Removes all keys and values from the FastKeyedCollectionTKey, TItem.
Public methodContains(TItem)
Determines whether the FastKeyedCollectionTKey, TItem contains the specified item.
Public methodContains(TKey)
Determines whether the FastKeyedCollectionTKey, TItem contains the specified item described by the key.
Public methodCopyTo
Copies the elements of the FastKeyedCollectionTKey, TItem to an Array, starting at a particular Array index.
Public methodRemove(TItem)
Removes the element from the FastKeyedCollectionTKey, TItem.
Public methodRemove(TKey)
Removes the value with the specified key from the FastKeyedCollectionTKey, TItem.
Public methodTryGetValue
Gets the value associated with the specified key.
Top
Extension Methods
  NameDescription
Public Extension MethodAppendTItem
Concatenates an item into a sequences.
(Defined by Extensions.)
Public Extension MethodCode exampleAs(Type)Overloaded.
Converts a type using the implicit or explicit operators. If both fails it will try to convert the value with ChangeType(Object, Type).
(Defined by ExtensionsConvertions.)
Public Extension MethodCode exampleAs(Type, Type)Overloaded.
Converts a type using the implicit or explicit operators. If both fails it will try to convert the value with ChangeType(Object, Type).
(Defined by ExtensionsConvertions.)
Public Extension MethodCode exampleAsTOverloaded.
Performs a cast between compatible reference types. If a convertion is not possible then null is returned. As a last resort it will use ChangeType(Object, Type).

Tries to use the implicit and explicit operators if exists when convertion with 'as' returns null.

(Defined by ExtensionsConvertions.)
Public Extension MethodCode exampleCreateTypeT
Creates a new Type that implements the properties of an interface defined by T and copies all value of anon to the new object.
(Defined by ExtensionsInterception.)
Public Extension MethodDistinctTItem
Returns distinct elements from a sequence by using a selector to compare values.
(Defined by Extensions.)
Public Extension MethodForeachTItem (Defined by Extensions.)
Public Extension MethodGetPropertyNonPublicValueT
Searches for the specified property, using the specified binding constraints and returns its value.

Default BindingFlags are Instance and NonPublic

(Defined by ExtensionsReflection.)
Public Extension MethodGetPropertyValue(String, BindingFlags)Overloaded.
Searches for the specified property, using the specified binding constraints and returns its value.
(Defined by ExtensionsReflection.)
Public Extension MethodGetPropertyValueT(String)Overloaded.
Searches for the specified property, using the specified binding constraints and returns its value.

Default BindingFlags are Instance and Public

(Defined by ExtensionsReflection.)
Public Extension MethodGetPropertyValueT(String, BindingFlags)Overloaded.
Searches for the specified property, using the specified binding constraints and returns its value.
(Defined by ExtensionsReflection.)
Public Extension MethodInterleaveTItem
Interleve combine two collections.
(Defined by Extensions.)
Public Extension MethodJoinTItem
Concatenates the members of a collection, using the specified separator between each member.
(Defined by Extensions.)
Public Extension MethodMapToT
Maps all properties and fields of an instance to another instance. The Clone() method is used to copy an instance if exist.

Mapping fails on jagged and multidimensional array. Classes without parameterless constructor will stay null.

(Defined by ExtensionsCloning.)
Public Extension MethodMaxByTItem, TKey(FuncTItem, TKey)Overloaded.
Returns the item with the maximum value in a sequence of values.
(Defined by Extensions.)
Public Extension MethodMaxByTItem, TKey(FuncTItem, TKey, IComparerTKey)Overloaded.
Returns the item with the maximum value in a sequence of values.
(Defined by Extensions.)
Public Extension MethodMinByTItem, TKey(FuncTItem, TKey)Overloaded.
Returns the item with the minimum value in a sequence of values.
(Defined by Extensions.)
Public Extension MethodMinByTItem, TKey(FuncTItem, TKey, IComparerTKey)Overloaded.
Returns the item with the minimum value in a sequence of values.
(Defined by Extensions.)
Public Extension MethodOperations
Provides linq like methods for handling and converting IEnumerables.

This is separated from actual extension to avoid confusions with System.Linq extensions. And also to avoid accidental usage.

(Defined by Extensions.)
Public Extension MethodToArray
Converts a IEnumerable to an array
(Defined by ExtensionsConvertions.)
Public Extension MethodToLong
Tries to convert a Object to an Int64. Returns MinValue if target cannot be parsed.
(Defined by ExtensionsConvertions.)
Public Extension MethodToStringEx(String)Overloaded.
Converts the value of this instance to its equivalent string representation, using the specified format.

The following custom formatter are already added: ByteSizeFormatter, MetricUnitFormatter

(Defined by Extensions.)
Public Extension MethodToStringEx(String, CultureInfo)Overloaded.
Converts the value of this instance to its equivalent string representation, using the specified format.

The following custom formatter are already added: ByteSizeFormatter, MetricUnitFormatter

(Defined by Extensions.)
Public Extension MethodTryDispose
Tries to performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

This will dispose an object if it implements the IDisposable interface.

(Defined by Extensions.)
Top
Explicit Interface Implementations
See Also