Mono Class Library: Overview

System.Collections.Generic.Dictionary<TKey,TValue>: Members

The members of System.Collections.Generic.Dictionary<TKey,TValue> are listed below.

See Also: Inherited members from System.Object

Public Constructors

Initializes a new dictionary that is empty, has the default initial capacity, and uses the default equality comparer.
Initializes a new dictionary that contains elements copied from the specified dictionary, has sufficient capacity to accommodate the number of elements copied, and uses the default equality comparer.
Initializes a new dictionary that is empty, has the default initial capacity, and uses the specified equality comparer.
Initializes a new dictionary that is empty, has the specified initial capacity, and uses the default equality comparer.
Initializes a new dictionary that contains elements copied from the specified dictionary, has sufficient capacity to accommodate the number of elements copied, and uses the specified equality comparer.
Initializes a new dictionary that is empty, has the specified initial capacity, and uses the specified equality comparer.

Protected Constructors

Public Properties

[read-only]
ComparerIEqualityComparer<TKey>. Documentation for this section has not yet been entered.
[read-only]
Countint. Gets the number of key/value pairs contained in the dictionary.
default property
Item(TKey)TValue. Gets or sets the value associated with the specified key.
[read-only]
KeysDictionary<TKey, TValue>.KeyCollection. Gets a collection that contains the keys in the dictionary.
[read-only]
ValuesDictionary<TKey, TValue>.ValueCollection. Gets a collection that contains the values in the dictionary.

Public Methods

Add(TKey, TValue)
Adds an element with the specified key and value to the dictionary.
Clear()
Removes all elements from the dictionary.
ContainsKey(TKey) : bool
Determines whether the dictionary contains an element with a specific key.
ContainsValue(TValue) : bool
Determines whether the dictionary contains an element with a specific value.
GetEnumerator() : Dictionary<TKey, TValue>.Enumerator
Returns an enumerator that can be used to iterate over the dictionary.
GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
Documentation for this section has not yet been entered.
OnDeserialization(object)
Documentation for this section has not yet been entered.
Remove(TKey) : bool
Removes the element with the specified key from the dictionary.
TryGetValue(TKey, out TValue) : bool
Documentation for this section has not yet been entered.

Explicitly Implemented Interface Members

ICollection<KeyValuePair<TKey, TValue>>.AddDocumentation for this section has not yet been entered.
IDictionary.AddThis method is implemented to support the IDictionary interface.
ICollection<KeyValuePair<TKey, TValue>>.ContainsDocumentation for this section has not yet been entered.
IDictionary.ContainsThis method is implemented to support the IDictionary interface.
ICollection.CopyToThis method is implemented to support the ICollection interface.
ICollection<KeyValuePair<TKey, TValue>>.CopyToThis method is implemented to support the System.Collections.Generics.ICollection<KeyValuePair<TKey, TValue>> interface.
IEnumerable<KeyValuePair<TKey, TValue>>.GetEnumeratorThis method is implemented to support the System.Collections.Generics.IEnumerable<KeyValuePair<TKey, TValue>> interface.
IDictionary.GetEnumeratorThis method is implemented to support the IDictionary interface.
IEnumerable.GetEnumeratorThis method is implemented to support the IEnumerable interface.
[read-only]
IDictionary.IsFixedSizebool. This read-only property is implemented to support the IDictionary interface.
[read-only]
ICollection<KeyValuePair<TKey, TValue>>.IsReadOnlybool. This read-only property is implemented to support the System.Collections.Generics.ICollection<KeyValuePair<TKey, TValue>> interface.
[read-only]
IDictionary.IsReadOnlybool. This read-only property is implemented to support the IDictionary interface.
[read-only]
ICollection.IsSynchronizedbool. This read-only property is implemented to support the ICollection interface.
IDictionary.Itemobject. This read-only property is implemented to support the IDictionary interface.
[read-only]
IDictionary<TKey, TValue>.KeysICollection<TKey>. This read-only property is implemented to support the IDictionary<TKey, TValue> interface.
[read-only]
IDictionary.KeysICollection. This read-only property is implemented to support the IDictionary interface.
ICollection<KeyValuePair<TKey, TValue>>.RemoveDocumentation for this section has not yet been entered.
IDictionary.RemoveThis method is implemented to support the IDictionary interface.
[read-only]
ICollection.SyncRootobject. This read-only property is implemented to support the ICollection interface.
[read-only]
IDictionary<TKey, TValue>.ValuesICollection<TValue>. This read-only property is implemented to support the IDictionary<TKey, TValue> interface.
[read-only]
IDictionary.ValuesICollection. This read-only property is implemented to support the IDictionary interface.

Extension Methods

static
Aggregate<TSource>(this IEnumerable<TSource>, Func<TSource, TSource, TSource>) : TSource
Documentation for this section has not yet been entered.
static
Aggregate<TSource,TAccumulate>(this IEnumerable<TSource>, TAccumulate, Func<TAccumulate, TSource, TAccumulate>) : TAccumulate
Documentation for this section has not yet been entered.
static
Aggregate<TSource,TAccumulate,TResult>(this IEnumerable<TSource>, TAccumulate, Func<TAccumulate, TSource, TAccumulate>, Func<TAccumulate, TResult>) : TResult
Documentation for this section has not yet been entered.
static
All<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : bool
Documentation for this section has not yet been entered.
static
Any<TSource>(this IEnumerable<TSource>) : bool
Documentation for this section has not yet been entered.
static
Any<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : bool
Documentation for this section has not yet been entered.
static
AsEnumerable<TSource>(this IEnumerable<TSource>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
AsQueryable(this IEnumerable) : System.Linq.IQueryable
Documentation for this section has not yet been entered.
static
AsQueryable<TElement>(this IEnumerable<TElement>) : System.Linq.IQueryable<TElement>
Documentation for this section has not yet been entered.
static
Average(this IEnumerable<decimal>) : decimal
Documentation for this section has not yet been entered.
static
Average(this IEnumerable<double>) : double
Documentation for this section has not yet been entered.
static
Average(this IEnumerable<int>) : double
Documentation for this section has not yet been entered.
static
Average(this IEnumerable<long>) : double
Documentation for this section has not yet been entered.
static
Average(this IEnumerable<Nullable<decimal>>) : Nullable<decimal>
Documentation for this section has not yet been entered.
static
Average(this IEnumerable<Nullable<double>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Average(this IEnumerable<Nullable<int>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Average(this IEnumerable<Nullable<long>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Average(this IEnumerable<Nullable<float>>) : Nullable<float>
Documentation for this section has not yet been entered.
static
Average(this IEnumerable<float>) : float
Documentation for this section has not yet been entered.
static
Average<TSource>(this IEnumerable<TSource>, Func<TSource, decimal>) : decimal
Documentation for this section has not yet been entered.
static
Average<TSource>(this IEnumerable<TSource>, Func<TSource, double>) : double
Documentation for this section has not yet been entered.
static
Average<TSource>(this IEnumerable<TSource>, Func<TSource, int>) : double
Documentation for this section has not yet been entered.
static
Average<TSource>(this IEnumerable<TSource>, Func<TSource, long>) : double
Documentation for this section has not yet been entered.
static
Average<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<decimal>>) : Nullable<decimal>
Documentation for this section has not yet been entered.
static
Average<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<double>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Average<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<int>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Average<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<long>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Average<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<float>>) : Nullable<float>
Documentation for this section has not yet been entered.
static
Average<TSource>(this IEnumerable<TSource>, Func<TSource, float>) : float
Documentation for this section has not yet been entered.
static
Cast<TResult>(this IEnumerable) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
Concat<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
Contains<TSource>(this IEnumerable<TSource>, TSource) : bool
Documentation for this section has not yet been entered.
static
Contains<TSource>(this IEnumerable<TSource>, TSource, IEqualityComparer<TSource>) : bool
Documentation for this section has not yet been entered.
static
Count<TSource>(this IEnumerable<TSource>) : int
Documentation for this section has not yet been entered.
static
Count<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : int
Documentation for this section has not yet been entered.
static
DefaultIfEmpty<TSource>(this IEnumerable<TSource>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
DefaultIfEmpty<TSource>(this IEnumerable<TSource>, TSource) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
Distinct<TSource>(this IEnumerable<TSource>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
Distinct<TSource>(this IEnumerable<TSource>, IEqualityComparer<TSource>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
ElementAt<TSource>(this IEnumerable<TSource>, int) : TSource
Documentation for this section has not yet been entered.
static
ElementAtOrDefault<TSource>(this IEnumerable<TSource>, int) : TSource
Documentation for this section has not yet been entered.
static
Except<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
Except<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
First<TSource>(this IEnumerable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
First<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : TSource
Documentation for this section has not yet been entered.
static
FirstOrDefault<TSource>(this IEnumerable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
FirstOrDefault<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : TSource
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>) : IEnumerable<System.Linq.IGrouping<TKey, TSource>>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>) : IEnumerable<System.Linq.IGrouping<TKey, TSource>>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>) : IEnumerable<System.Linq.IGrouping<TKey, TElement>>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>) : IEnumerable<System.Linq.IGrouping<TKey, TElement>>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey,TResult>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TKey, IEnumerable<TSource>,TResult>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey,TResult>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TKey, IEnumerable<TSource>,TResult>, IEqualityComparer<TKey>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey,TElement,TResult>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, Func<TKey, IEnumerable<TElement>,TResult>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey,TElement,TResult>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, Func<TKey, IEnumerable<TElement>,TResult>, IEqualityComparer<TKey>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
GroupJoin<TOuter,TInner,TKey,TResult>(this IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, IEnumerable<TInner>,TResult>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
GroupJoin<TOuter,TInner,TKey,TResult>(this IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, IEnumerable<TInner>,TResult>, IEqualityComparer<TKey>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
Intersect<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
Intersect<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
Join<TOuter,TInner,TKey,TResult>(this IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, TInner, TResult>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
Join<TOuter,TInner,TKey,TResult>(this IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, TInner, TResult>, IEqualityComparer<TKey>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
Last<TSource>(this IEnumerable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
Last<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : TSource
Documentation for this section has not yet been entered.
static
LastOrDefault<TSource>(this IEnumerable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
LastOrDefault<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : TSource
Documentation for this section has not yet been entered.
static
LongCount<TSource>(this IEnumerable<TSource>) : long
Documentation for this section has not yet been entered.
static
LongCount<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : long
Documentation for this section has not yet been entered.
static
Max(this IEnumerable<decimal>) : decimal
Documentation for this section has not yet been entered.
static
Max(this IEnumerable<double>) : double
Documentation for this section has not yet been entered.
static
Max(this IEnumerable<int>) : int
Documentation for this section has not yet been entered.
static
Max(this IEnumerable<long>) : long
Documentation for this section has not yet been entered.
static
Max(this IEnumerable<Nullable<decimal>>) : Nullable<decimal>
Documentation for this section has not yet been entered.
static
Max(this IEnumerable<Nullable<double>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Max(this IEnumerable<Nullable<int>>) : Nullable<int>
Documentation for this section has not yet been entered.
static
Max(this IEnumerable<Nullable<long>>) : Nullable<long>
Documentation for this section has not yet been entered.
static
Max(this IEnumerable<Nullable<float>>) : Nullable<float>
Documentation for this section has not yet been entered.
static
Max(this IEnumerable<float>) : float
Documentation for this section has not yet been entered.
static
Max<TSource>(this IEnumerable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
Max<TSource>(this IEnumerable<TSource>, Func<TSource, decimal>) : decimal
Documentation for this section has not yet been entered.
static
Max<TSource>(this IEnumerable<TSource>, Func<TSource, double>) : double
Documentation for this section has not yet been entered.
static
Max<TSource>(this IEnumerable<TSource>, Func<TSource, int>) : int
Documentation for this section has not yet been entered.
static
Max<TSource>(this IEnumerable<TSource>, Func<TSource, long>) : long
Documentation for this section has not yet been entered.
static
Max<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<decimal>>) : Nullable<decimal>
Documentation for this section has not yet been entered.
static
Max<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<double>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Max<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<int>>) : Nullable<int>
Documentation for this section has not yet been entered.
static
Max<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<long>>) : Nullable<long>
Documentation for this section has not yet been entered.
static
Max<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<float>>) : Nullable<float>
Documentation for this section has not yet been entered.
static
Max<TSource>(this IEnumerable<TSource>, Func<TSource, float>) : float
Documentation for this section has not yet been entered.
static
Max<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, TResult>) : TResult
Documentation for this section has not yet been entered.
static
Min(this IEnumerable<decimal>) : decimal
Documentation for this section has not yet been entered.
static
Min(this IEnumerable<double>) : double
Documentation for this section has not yet been entered.
static
Min(this IEnumerable<int>) : int
Documentation for this section has not yet been entered.
static
Min(this IEnumerable<long>) : long
Documentation for this section has not yet been entered.
static
Min(this IEnumerable<Nullable<decimal>>) : Nullable<decimal>
Documentation for this section has not yet been entered.
static
Min(this IEnumerable<Nullable<double>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Min(this IEnumerable<Nullable<int>>) : Nullable<int>
Documentation for this section has not yet been entered.
static
Min(this IEnumerable<Nullable<long>>) : Nullable<long>
Documentation for this section has not yet been entered.
static
Min(this IEnumerable<Nullable<float>>) : Nullable<float>
Documentation for this section has not yet been entered.
static
Min(this IEnumerable<float>) : float
Documentation for this section has not yet been entered.
static
Min<TSource>(this IEnumerable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
Min<TSource>(this IEnumerable<TSource>, Func<TSource, decimal>) : decimal
Documentation for this section has not yet been entered.
static
Min<TSource>(this IEnumerable<TSource>, Func<TSource, double>) : double
Documentation for this section has not yet been entered.
static
Min<TSource>(this IEnumerable<TSource>, Func<TSource, int>) : int
Documentation for this section has not yet been entered.
static
Min<TSource>(this IEnumerable<TSource>, Func<TSource, long>) : long
Documentation for this section has not yet been entered.
static
Min<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<decimal>>) : Nullable<decimal>
Documentation for this section has not yet been entered.
static
Min<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<double>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Min<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<int>>) : Nullable<int>
Documentation for this section has not yet been entered.
static
Min<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<long>>) : Nullable<long>
Documentation for this section has not yet been entered.
static
Min<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<float>>) : Nullable<float>
Documentation for this section has not yet been entered.
static
Min<TSource>(this IEnumerable<TSource>, Func<TSource, float>) : float
Documentation for this section has not yet been entered.
static
Min<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, TResult>) : TResult
Documentation for this section has not yet been entered.
static
OfType<TResult>(this IEnumerable) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
OrderBy<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>) : System.Linq.IOrderedEnumerable<TSource>
Documentation for this section has not yet been entered.
static
OrderBy<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>) : System.Linq.IOrderedEnumerable<TSource>
Documentation for this section has not yet been entered.
static
OrderByDescending<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>) : System.Linq.IOrderedEnumerable<TSource>
Documentation for this section has not yet been entered.
static
OrderByDescending<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>) : System.Linq.IOrderedEnumerable<TSource>
Documentation for this section has not yet been entered.
static
Reverse<TSource>(this IEnumerable<TSource>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
Select<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, int, TResult>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
Select<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, TResult>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
SelectMany<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, IEnumerable<TResult>>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
SelectMany<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, int, IEnumerable<TResult>>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
SelectMany<TSource,TCollection,TResult>(this IEnumerable<TSource>, Func<TSource, IEnumerable<TCollection>>, Func<TSource, TCollection, TResult>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
SelectMany<TSource,TCollection,TResult>(this IEnumerable<TSource>, Func<TSource, int, IEnumerable<TCollection>>, Func<TSource, TCollection, TResult>) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
SequenceEqual<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>) : bool
Documentation for this section has not yet been entered.
static
SequenceEqual<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) : bool
Documentation for this section has not yet been entered.
static
Single<TSource>(this IEnumerable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
Single<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : TSource
Documentation for this section has not yet been entered.
static
SingleOrDefault<TSource>(this IEnumerable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
SingleOrDefault<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : TSource
Documentation for this section has not yet been entered.
static
Skip<TSource>(this IEnumerable<TSource>, int) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
SkipWhile<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
SkipWhile<TSource>(this IEnumerable<TSource>, Func<TSource, int, bool>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
Sum(this IEnumerable<decimal>) : decimal
Documentation for this section has not yet been entered.
static
Sum(this IEnumerable<double>) : double
Documentation for this section has not yet been entered.
static
Sum(this IEnumerable<int>) : int
Documentation for this section has not yet been entered.
static
Sum(this IEnumerable<long>) : long
Documentation for this section has not yet been entered.
static
Sum(this IEnumerable<Nullable<decimal>>) : Nullable<decimal>
Documentation for this section has not yet been entered.
static
Sum(this IEnumerable<Nullable<double>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Sum(this IEnumerable<Nullable<int>>) : Nullable<int>
Documentation for this section has not yet been entered.
static
Sum(this IEnumerable<Nullable<long>>) : Nullable<long>
Documentation for this section has not yet been entered.
static
Sum(this IEnumerable<Nullable<float>>) : Nullable<float>
Documentation for this section has not yet been entered.
static
Sum(this IEnumerable<float>) : float
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IEnumerable<TSource>, Func<TSource, decimal>) : decimal
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IEnumerable<TSource>, Func<TSource, double>) : double
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IEnumerable<TSource>, Func<TSource, int>) : int
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IEnumerable<TSource>, Func<TSource, long>) : long
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<decimal>>) : Nullable<decimal>
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<double>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<int>>) : Nullable<int>
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<long>>) : Nullable<long>
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<float>>) : Nullable<float>
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IEnumerable<TSource>, Func<TSource, float>) : float
Documentation for this section has not yet been entered.
static
Take<TSource>(this IEnumerable<TSource>, int) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
TakeWhile<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
TakeWhile<TSource>(this IEnumerable<TSource>, Func<TSource, int, bool>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
ToArray<TSource>(this IEnumerable<TSource>) : TSource[]
Documentation for this section has not yet been entered.
static
ToDictionary<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>) : Dictionary<TKey, TSource>
Documentation for this section has not yet been entered.
static
ToDictionary<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>) : Dictionary<TKey, TSource>
Documentation for this section has not yet been entered.
static
ToDictionary<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>) : Dictionary<TKey, TElement>
Documentation for this section has not yet been entered.
static
ToDictionary<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>) : Dictionary<TKey, TElement>
Documentation for this section has not yet been entered.
static
ToList<TSource>(this IEnumerable<TSource>) : List<TSource>
Documentation for this section has not yet been entered.
static
ToLookup<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>) : System.Linq.ILookup<TKey, TSource>
Documentation for this section has not yet been entered.
static
ToLookup<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>) : System.Linq.ILookup<TKey, TSource>
Documentation for this section has not yet been entered.
static
ToLookup<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>) : System.Linq.ILookup<TKey, TElement>
Documentation for this section has not yet been entered.
static
ToLookup<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>) : System.Linq.ILookup<TKey, TElement>
Documentation for this section has not yet been entered.
static
Union<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
Union<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
Where<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.
static
Where<TSource>(this IEnumerable<TSource>, Func<TSource, int, bool>) : IEnumerable<TSource>
Documentation for this section has not yet been entered.