Returns the element at a specified index in a sequence....LINQ_ElementAt() IEnumerable::LINQ_ElementAt(int) method Returns...Generic :: IEnumerable < T >:: LINQ_ElementAt ( int index ) Arguments...
Returns the number of elements in the sequence (calculated via direct counting)....LINQ_Count() IEnumerable::LINQ_Count() method Returns the number...Generic :: IEnumerable < T >:: LINQ_Count () Return Value Number...
Returns the first element of a sequence....LINQ_First() IEnumerable::LINQ_First() method Returns the first...Generic :: IEnumerable < T >:: LINQ_First () Return Value First...
Sorts the elements of a sequence in ascending order according to the key values selected by keySelector....LINQ_OrderBy() IEnumerable::LINQ_OrderBy(const Func<T, Key>&)...Generic :: IEnumerable < T >:: LINQ_OrderBy ( const Func < T , Key...
Sorts the elements of a sequence in descending order according to the key values selected by keySelector....LINQ_OrderByDescending() IEnumerable::LINQ_OrderByDescending(const...Generic :: IEnumerable < T >:: LINQ_OrderByDescending ( const Func...
Returns the first element of a sequence, or a default value if the sequence is empty....LINQ_FirstOrDefault() Contents [ Hide ] IEnumerable::LINQ_FirstOrDefault()...Generic :: IEnumerable < T >:: LINQ_FirstOrDefault () Return Value...
Determines if a sequence contains a specified value....LINQ_Contains() IEnumerable::LINQ_Contains(T) method Determines...Generic :: IEnumerable < T >:: LINQ_Contains ( T value ) Arguments...
Determines whether all elements of a sequence satisfy a condition....LINQ_All() IEnumerable::LINQ_All(std::function<bool(T)>) method...Generic :: IEnumerable < T >:: LINQ_All ( std :: function < bool...