Mono Class Library: Overview

System.String: Members

The members of System.String are listed below.

See Also: Inherited members from System.Object

Public Constructors

Constructs and initializes a new instance of string using a specified pointer to a sequence of Unicode characters.
Constructs and initializes a new instance of string by copying the specified array of Unicode characters.
Documentation for this section has not yet been entered.
Constructs and initializes a new instance of string .
Constructs and initializes a new instance of string using a specified pointer to a sequence of Unicode characters, the index within that sequence at which to start copying characters, and the number of characters to be copied to construct the string .
Constructs and initializes a new instance of string using an array of Unicode characters, the index within array at which to start copying characters, and the number of characters to be copied.
Documentation for this section has not yet been entered.
Constructs and initializes a new instance of the String class to the value indicated by a specified pointer to an array of 8-bit signed integers, a starting character position within that array, a length, and an Encoding object.

Public Fields

static readonly
Emptystring. A constant string representing the empty string.

Public Properties

[read-only]
default property
Chars(int)char. Gets the character at a specified position in the current instance.
[read-only]
Lengthint. Gets the number of characters in the current instance.

Public Methods

Clone() : object
Returns a reference to the current instance of string.
static
Compare(string, string) : int
Compares two string objects in a case-sensitive manner.
static
Compare(string, string, bool) : int
Returns sort order of two string objects, ignoring or honoring their case.
static
Compare(string, string, StringComparison) : int
Documentation for this section has not yet been entered.
static
Compare(string, string, bool, System.Globalization.CultureInfo) : int
Documentation for this section has not yet been entered.
static
Compare(string, int, string, int, int) : int
Compares substrings of two strings.
static
Compare(string, int, string, int, int, bool) : int
Compares substrings of two strings, ignoring or honoring their case.
static
Compare(string, int, string, int, int, StringComparison) : int
Documentation for this section has not yet been entered.
static
Compare(string, int, string, int, int, bool, System.Globalization.CultureInfo) : int
Documentation for this section has not yet been entered.
static
CompareOrdinal(string, string) : int
Compares two specified string objects based on the code points of the contained Unicode characters.
static
CompareOrdinal(string, int, string, int, int) : int
Compares substrings of two specified string objects based on the code points of the contained Unicode characters.
CompareTo(object) : int
Returns the sort order of the current instance compared to the specified object.
CompareTo(string) : int
Returns the sort order of the current instance compared to the specified string.
static
Concat(object) : string
Documentation for this section has not yet been entered.
static
Concat(params object[]) : string
Concatenates the string representations of the elements in an array of object instances.
static
Concat(params string[]) : string
Concatenates the elements of a specified array.
static
Concat(object, object) : string
Concatenates the string representations of two specified objects.
static
Concat(string, string) : string
Concatenates two specified instances of string.
static
Concat(object, object, object) : string
Concatenates the string representations of three specified objects, in order provided.
static
Concat(string, string, string) : string
Concatenates three specified instances of string.
static
Concat(object, object, object, object) : string
Documentation for this section has not yet been entered.
static
Concat(string, string, string, string) : string
Documentation for this section has not yet been entered.
Contains(string) : bool
Documentation for this section has not yet been entered.
static
Copy(string) : string
Creates a new instance of string with the same value as a specified instance of string.
CopyTo(int, char[], int, int)
Copies a specified number of characters from a specified position in the current string instance to a specified position in a specified array of Unicode characters.
EndsWith(string) : bool
Returns a bool value that indicates whether the ending characters of the current instance match the specified string.
EndsWith(string, StringComparison) : bool
Documentation for this section has not yet been entered.
EndsWith(string, bool, System.Globalization.CultureInfo) : bool
Documentation for this section has not yet been entered.
override
Equals(object) : bool
Determines whether the current instance and the specified object have the same value.
Equals(string) : bool
Determines whether the current instance and the specified string have the same value.
static
Equals(string, string) : bool
Determines whether two specified string objects have the same value.
Equals(string, StringComparison) : bool
Documentation for this section has not yet been entered.
static
Equals(string, string, StringComparison) : bool
Documentation for this section has not yet been entered.
static
Format(string, object) : string
Replaces the format specification in a provided string with a specified textual equivalent of the value of a specified object instance.
static
Format(string, params object[]) : string
Replaces the format specification in a specified string with the textual equivalent of the value of a corresponding object instance in a specified array.
static
Format(IFormatProvider, string, params object[]) : string
Replaces the format specification in a specified string with the culture-specific textual equivalent of the value of a corresponding object instance in a specified array.
static
Format(string, object, object) : string
Replaces the format specification in a specified string with the textual equivalent of the value of two specified object instances.
static
Format(string, object, object, object) : string
Replaces the format specification in a specified string with the textual equivalent of the value of three specified object instances.
GetEnumerator() : CharEnumerator
Retrieves an object that can iterate through the individual characters in the current instance.
override
GetHashCode() : int
Generates a hash code for the current instance.
GetTypeCode() : TypeCode
Documentation for this section has not yet been entered.
IndexOf(char) : int
Returns the index of the first occurrence of a specified Unicode character in the current instance.
IndexOf(string) : int
Returns the index of the first occurrence of a specified string in the current instance.
IndexOf(char, int) : int
Returns the index of the first occurrence of a specified Unicode character in the current instance, with the search starting from a specified index.
IndexOf(string, int) : int
Returns the index of the first occurrence of a specified string in the current instance, with the search starting from a specified index.
IndexOf(string, StringComparison) : int
Documentation for this section has not yet been entered.
IndexOf(char, int, int) : int
Returns the index of the first occurrence of a specified Unicode character in the current instance, with the search over the specified range starting at the provided index.
IndexOf(string, int, int) : int
Returns the index of the first occurrence of a specified string in the current instance, with the search over the specified range starting at the provided index.
IndexOf(string, int, StringComparison) : int
Documentation for this section has not yet been entered.
IndexOf(string, int, int, StringComparison) : int
Documentation for this section has not yet been entered.
IndexOfAny(char[]) : int
Reports the index of the first occurrence in the current instance of any character in a specified array of Unicode characters.
IndexOfAny(char[], int) : int
Returns the index of the first occurrence of any element in a specified array of Unicode characters in the current instance, with the search starting from a specified index.
IndexOfAny(char[], int, int) : int
Returns the index of the first occurrence of any element in a specified Array of Unicode characters in the current instance, with the search over the specified range starting from the provided index.
Insert(int, string) : string
Returns a string equivalent to the current instance with a specified string inserted at the specified position.
static
Intern(string) : string
Retrieves the system's reference to a specified string.
static
IsInterned(string) : string
Retrieves a reference to a specified string.
IsNormalized() : bool
Documentation for this section has not yet been entered.
IsNormalized(System.Text.NormalizationForm) : bool
Documentation for this section has not yet been entered.
static
IsNullOrEmpty(string) : bool
Documentation for this section has not yet been entered.
static
Join(string, string[]) : string
Concatenates the elements of a specified string array, inserting a separator string between each element pair and yielding a single concatenated string.
static
Join(string, string[], int, int) : string
Concatenates a specified separator string between the elements of a specified string array, yielding a single concatenated string.
LastIndexOf(char) : int
Returns the index of the last occurrence of a specified character within the current instance.
LastIndexOf(string) : int
Returns the index of the last occurrence of a specified string within the current instance.
LastIndexOf(char, int) : int
Returns the index of the last occurrence of a specified character within the current instance.
LastIndexOf(string, int) : int
Returns the index of the last occurrence of a specified string within the current instance, starting at a given position.
LastIndexOf(string, StringComparison) : int
Documentation for this section has not yet been entered.
LastIndexOf(char, int, int) : int
Returns the index of the last occurrence of a specified character in the provided range of the current instance.
LastIndexOf(string, int, int) : int
Returns the index of the last occurrence of a specified string in the provided range of the current instance.
LastIndexOf(string, int, StringComparison) : int
Documentation for this section has not yet been entered.
LastIndexOf(string, int, int, StringComparison) : int
Documentation for this section has not yet been entered.
LastIndexOfAny(char[]) : int
Returns the index of the last occurrence of any element of a specified array of characters in the current instance.
LastIndexOfAny(char[], int) : int
Returns the index of the last occurrence of any element of a specified array of characters in the current instance.
LastIndexOfAny(char[], int, int) : int
Returns the index of the last occurrence of any of specified characters in the provided range of the current instance.
Normalize() : string
Documentation for this section has not yet been entered.
Normalize(System.Text.NormalizationForm) : string
Documentation for this section has not yet been entered.
PadLeft(int) : string
Right-aligns the characters in the current instance, padding with spaces on the left, for a specified total length.
PadLeft(int, char) : string
Right-aligns the characters in the current instance, padding on the left with a specified Unicode character, for a specified total length.
PadRight(int) : string
Left-aligns the characters in the current instance, padding with spaces on the right, for a specified total number of characters.
PadRight(int, char) : string
Left-aligns the characters in the current instance, padding on the right with a specified Unicode character, for a specified total number of characters.
Remove(int) : string
Documentation for this section has not yet been entered.
Remove(int, int) : string
Deletes a specified number of characters from the current instance beginning at a specified index.
Replace(char, char) : string
Replaces all instances of a specified Unicode character with another specified Unicode character.
Replace(string, string) : string
Replaces all instances of a specified substring within the current instance with another specified string.
Split(params char[]) : string[]
Returns substrings of the current instance that are delimited by the specified characters.
Split(char[], int) : string[]
Returns substrings of the current instance that are delimited by the specified characters.
Split(char[], StringSplitOptions) : string[]
Documentation for this section has not yet been entered.
Split(string[], StringSplitOptions) : string[]
Documentation for this section has not yet been entered.
Split(char[], int, StringSplitOptions) : string[]
Documentation for this section has not yet been entered.
Split(string[], int, StringSplitOptions) : string[]
Documentation for this section has not yet been entered.
StartsWith(string) : bool
Returns a bool value that indicates whether the start of the current instance matches the specified string.
StartsWith(string, StringComparison) : bool
Documentation for this section has not yet been entered.
StartsWith(string, bool, System.Globalization.CultureInfo) : bool
Documentation for this section has not yet been entered.
Substring(int) : string
Retrieves a substring from the current instance, starting from a specified index.
Substring(int, int) : string
Retrieves a substring from the current instance, starting from a specified index, continuing for a specified length.
ToCharArray() : char[]
Copies the characters in the current instance to a Unicode character array.
ToCharArray(int, int) : char[]
Copies the characters in a specified substring in the current instance to a Unicode character array.
ToLower() : string
Returns a copy of this string in lowercase.
ToLower(System.Globalization.CultureInfo) : string
Documentation for this section has not yet been entered.
ToLowerInvariant() : string
Documentation for this section has not yet been entered.
override
ToString() : string
Returns a string representation of the value of the current instance.
ToString(IFormatProvider) : string
Returns this instance of String; no actual conversion is performed.
ToUpper() : string
Returns a copy of the current instance with all elements converted to uppercase, using default properties.
ToUpper(System.Globalization.CultureInfo) : string
Documentation for this section has not yet been entered.
ToUpperInvariant() : string
Documentation for this section has not yet been entered.
Trim() : string
Removes all occurrences of white space characters from the beginning and end of the current instance.
Trim(params char[]) : string
Removes all occurrences of a set of characters provided in a character Array from the beginning and end of the current instance.
TrimEnd(params char[]) : string
Removes all occurrences of a set of characters specified in a Unicode character Array from the end of the current instance.
TrimStart(params char[]) : string
Removes all occurrences of a set of characters specified in a Unicode character array from the beginning of the current instance.

Public Operators

static
Equality(string, string) Returns a bool value indicating whether the two specified string values are equal to each other.
static
Inequality(string, string) Returns a bool value indicating whether the two string values are not equal to each other.

Explicitly Implemented Interface Members

IEnumerable<char>.GetEnumeratorThis method is implemented to support the System.Collections.Generics.IEnumerable<char> interface.
IEnumerable.GetEnumeratorImplemented to support the IEnumerable interface. [Note: For more information, see IEnumerable.GetEnumerator.]
IConvertible.ToBooleanDocumentation for this section has not yet been entered.
IConvertible.ToByteDocumentation for this section has not yet been entered.
IConvertible.ToCharDocumentation for this section has not yet been entered.
IConvertible.ToDateTimeDocumentation for this section has not yet been entered.
IConvertible.ToDecimalDocumentation for this section has not yet been entered.
IConvertible.ToDoubleDocumentation for this section has not yet been entered.
IConvertible.ToInt16Documentation for this section has not yet been entered.
IConvertible.ToInt32Documentation for this section has not yet been entered.
IConvertible.ToInt64Documentation for this section has not yet been entered.
IConvertible.ToSByteDocumentation for this section has not yet been entered.
IConvertible.ToSingleDocumentation for this section has not yet been entered.
IConvertible.ToTypeDocumentation for this section has not yet been entered.
IConvertible.ToUInt16Documentation for this section has not yet been entered.
IConvertible.ToUInt32Documentation for this section has not yet been entered.
IConvertible.ToUInt64Documentation for this section has not yet been entered.

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.