Enumerable Sınıf
Tanım
static Shared Uygulayan nesneleri sorgulamak için bir dizi (Visual Basic) yöntemleri sağlar IEnumerable<T> .Provides a set of static (Shared in Visual Basic) methods for querying objects that implement IEnumerable<T>.
public ref class Enumerable abstract sealed
public static class Enumerable
type Enumerable = class
Public Module Enumerable
- Devralma
-
Enumerable
Açıklamalar
Bu sınıftaki Yöntemler, uygulayan veri kaynaklarını sorgulamak için standart sorgu işleçlerinin bir uygulamasını sağlar IEnumerable<T> .The methods in this class provide an implementation of the standard query operators for querying data sources that implement IEnumerable<T>. Standart sorgu işleçleri, LINQ modelini izleyen genel amaçlı yöntemlerdir ve herhangi bir veri üzerinde geçiş, filtreleme ve İzdüşüm işlemlerini bir bütün veriler üzerinde hızlı bir şekilde sağlar. NET tabanlı programlama dili.The standard query operators are general purpose methods that follow the LINQ pattern and enable you to express traversal, filter, and projection operations over data in any .NET-based programming language.
Bu sınıftaki yöntemlerin çoğu genişletecek uzantı yöntemleri olarak tanımlanır IEnumerable<T> .The majority of the methods in this class are defined as extension methods that extend IEnumerable<T>. Bu, uygulayan herhangi bir nesne üzerinde örnek yöntemi gibi çağrılabilecek anlamına gelir IEnumerable<T> .This means they can be called like an instance method on any object that implements IEnumerable<T>.
Bir değer dizisi döndüren sorguda kullanılan metotlar, sorgu nesnesi numaralandırılana kadar hedef verileri tüketmez.Methods that are used in a query that returns a sequence of values do not consume the target data until the query object is enumerated. Bu, ertelenmiş yürütme olarak bilinir.This is known as deferred execution. Tek bir değer döndüren sorguda kullanılan metotlar ve hedef verileri hemen tüketir.Methods that are used in a query that returns a singleton value execute and consume the target data immediately.
Yöntemler
| Aggregate<TSource,TAccumulate,TResult>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate,TSource,TAccumulate>, Func<TAccumulate,TResult>) |
Bir sıra üzerinde bir biriktiricidir işlevi uygular.Applies an accumulator function over a sequence. Belirtilen çekirdek değeri, ilk biriktiricidir değeri olarak kullanılır ve sonuç değerini seçmek için belirtilen işlev kullanılır.The specified seed value is used as the initial accumulator value, and the specified function is used to select the result value. |
| Aggregate<TSource,TAccumulate>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate,TSource,TAccumulate>) |
Bir sıra üzerinde bir biriktiricidir işlevi uygular.Applies an accumulator function over a sequence. Belirtilen çekirdek değeri, ilk biriktiricidir değeri olarak kullanılır.The specified seed value is used as the initial accumulator value. |
| Aggregate<TSource>(IEnumerable<TSource>, Func<TSource,TSource,TSource>) |
Bir sıra üzerinde bir biriktiricidir işlevi uygular.Applies an accumulator function over a sequence. |
| All<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Bir dizinin tüm öğelerinin bir koşulu karşılayıp karşılamadığını belirler.Determines whether all elements of a sequence satisfy a condition. |
| Any<TSource>(IEnumerable<TSource>) |
Bir sıranın herhangi bir öğe içerip içermediğini belirler.Determines whether a sequence contains any elements. |
| Any<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Bir dizinin herhangi bir öğesinin bir koşulu karşılayıp karşılamadığını belirler.Determines whether any element of a sequence satisfies a condition. |
| Append<TSource>(IEnumerable<TSource>, TSource) |
Dizinin sonuna bir değer ekler.Appends a value to the end of the sequence. |
| AsEnumerable<TSource>(IEnumerable<TSource>) |
Olarak yazılan girişi döndürür IEnumerable<T> .Returns the input typed as IEnumerable<T>. |
| Average(IEnumerable<Decimal>) |
Bir değer dizisinin ortalamasını hesaplar Decimal .Computes the average of a sequence of Decimal values. |
| Average(IEnumerable<Double>) |
Bir değer dizisinin ortalamasını hesaplar Double .Computes the average of a sequence of Double values. |
| Average(IEnumerable<Int32>) |
Bir değer dizisinin ortalamasını hesaplar Int32 .Computes the average of a sequence of Int32 values. |
| Average(IEnumerable<Int64>) |
Bir değer dizisinin ortalamasını hesaplar Int64 .Computes the average of a sequence of Int64 values. |
| Average(IEnumerable<Nullable<Decimal>>) |
Null yapılabilir değerler dizisinin ortalamasını hesaplar Decimal .Computes the average of a sequence of nullable Decimal values. |
| Average(IEnumerable<Nullable<Double>>) |
Null yapılabilir değerler dizisinin ortalamasını hesaplar Double .Computes the average of a sequence of nullable Double values. |
| Average(IEnumerable<Nullable<Int32>>) |
Null yapılabilir değerler dizisinin ortalamasını hesaplar Int32 .Computes the average of a sequence of nullable Int32 values. |
| Average(IEnumerable<Nullable<Int64>>) |
Null yapılabilir değerler dizisinin ortalamasını hesaplar Int64 .Computes the average of a sequence of nullable Int64 values. |
| Average(IEnumerable<Nullable<Single>>) |
Null yapılabilir değerler dizisinin ortalamasını hesaplar Single .Computes the average of a sequence of nullable Single values. |
| Average(IEnumerable<Single>) |
Bir değer dizisinin ortalamasını hesaplar Single .Computes the average of a sequence of Single values. |
| Average<TSource>(IEnumerable<TSource>, Func<TSource,Decimal>) |
DecimalGiriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen bir değer dizisinin ortalamasını hesaplar.Computes the average of a sequence of Decimal values that are obtained by invoking a transform function on each element of the input sequence. |
| Average<TSource>(IEnumerable<TSource>, Func<TSource,Double>) |
DoubleGiriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen bir değer dizisinin ortalamasını hesaplar.Computes the average of a sequence of Double values that are obtained by invoking a transform function on each element of the input sequence. |
| Average<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) |
Int32Giriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen bir değer dizisinin ortalamasını hesaplar.Computes the average of a sequence of Int32 values that are obtained by invoking a transform function on each element of the input sequence. |
| Average<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) |
Int64Giriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen bir değer dizisinin ortalamasını hesaplar.Computes the average of a sequence of Int64 values that are obtained by invoking a transform function on each element of the input sequence. |
| Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Decimal>>) |
DecimalGiriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen bir null yapılabilir değerler dizisinin ortalamasını hesaplar.Computes the average of a sequence of nullable Decimal values that are obtained by invoking a transform function on each element of the input sequence. |
| Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Double>>) |
DoubleGiriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen bir null yapılabilir değerler dizisinin ortalamasını hesaplar.Computes the average of a sequence of nullable Double values that are obtained by invoking a transform function on each element of the input sequence. |
| Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int32>>) |
Int32Giriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen bir null yapılabilir değerler dizisinin ortalamasını hesaplar.Computes the average of a sequence of nullable Int32 values that are obtained by invoking a transform function on each element of the input sequence. |
| Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int64>>) |
Int64Giriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen bir null yapılabilir değerler dizisinin ortalamasını hesaplar.Computes the average of a sequence of nullable Int64 values that are obtained by invoking a transform function on each element of the input sequence. |
| Average<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Single>>) |
SingleGiriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen bir null yapılabilir değerler dizisinin ortalamasını hesaplar.Computes the average of a sequence of nullable Single values that are obtained by invoking a transform function on each element of the input sequence. |
| Average<TSource>(IEnumerable<TSource>, Func<TSource,Single>) |
SingleGiriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen bir değer dizisinin ortalamasını hesaplar.Computes the average of a sequence of Single values that are obtained by invoking a transform function on each element of the input sequence. |
| Cast<TResult>(IEnumerable) |
Öğesinin öğelerini IEnumerable belirtilen türe yayınlar.Casts the elements of an IEnumerable to the specified type. |
| Concat<TSource>(IEnumerable<TSource>, IEnumerable<TSource>) |
İki diziyi art arda ekler.Concatenates two sequences. |
| Contains<TSource>(IEnumerable<TSource>, TSource) |
Varsayılan eşitlik karşılaştırıcıyı kullanarak bir sıranın belirtilen öğeyi içerip içermediğini belirler.Determines whether a sequence contains a specified element by using the default equality comparer. |
| Contains<TSource>(IEnumerable<TSource>, TSource, IEqualityComparer<TSource>) |
Belirtilen öğeyi kullanarak bir sıranın belirtilen öğeyi içerip içermediğini belirler IEqualityComparer<T> .Determines whether a sequence contains a specified element by using a specified IEqualityComparer<T>. |
| Count<TSource>(IEnumerable<TSource>) |
Dizideki öğe sayısını döndürür.Returns the number of elements in a sequence. |
| Count<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Belirtilen dizideki kaç öğenin bir koşulu karşılayıp karşılamadığını temsil eden bir sayı döndürür.Returns a number that represents how many elements in the specified sequence satisfy a condition. |
| DefaultIfEmpty<TSource>(IEnumerable<TSource>) |
Dizi boşsa, tek bir koleksiyonda belirtilen sıranın veya tür parametresinin varsayılan değerinin varsayılan değerini döndürür.Returns the elements of the specified sequence or the type parameter's default value in a singleton collection if the sequence is empty. |
| DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) |
Dizi boşsa, tek bir koleksiyonda belirtilen sıranın veya belirtilen değerin öğelerini döndürür.Returns the elements of the specified sequence or the specified value in a singleton collection if the sequence is empty. |
| Distinct<TSource>(IEnumerable<TSource>) |
Değerleri karşılaştırmak için varsayılan eşitlik karşılaştırıcıyı kullanarak bir dizideki ayrı öğeleri döndürür.Returns distinct elements from a sequence by using the default equality comparer to compare values. |
| Distinct<TSource>(IEnumerable<TSource>, IEqualityComparer<TSource>) |
Değerleri karşılaştırmak için belirtilen ' i kullanarak bir dizideki ayrı öğeleri döndürür IEqualityComparer<T> .Returns distinct elements from a sequence by using a specified IEqualityComparer<T> to compare values. |
| ElementAt<TSource>(IEnumerable<TSource>, Int32) |
Bir dizideki belirtilen dizindeki öğeyi döndürür.Returns the element at a specified index in a sequence. |
| ElementAtOrDefault<TSource>(IEnumerable<TSource>, Int32) |
Dizin aralık dışında bir dizide belirtilen dizindeki öğeyi veya varsayılan değeri döndürür.Returns the element at a specified index in a sequence or a default value if the index is out of range. |
| Empty<TResult>() |
IEnumerable<T>Belirtilen tür bağımsız değişkenine sahip bir boş değer döndürür.Returns an empty IEnumerable<T> that has the specified type argument. |
| Except<TSource>(IEnumerable<TSource>, IEnumerable<TSource>) |
Değerleri karşılaştırmak için varsayılan eşitlik karşılaştırıcıyı kullanarak iki sıranın ayarlama farkını üretir.Produces the set difference of two sequences by using the default equality comparer to compare values. |
| Except<TSource>(IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) |
Değerleri karşılaştırmak için belirtilen ' i kullanarak iki sıranın ayarlama farkını üretir IEqualityComparer<T> .Produces the set difference of two sequences by using the specified IEqualityComparer<T> to compare values. |
| First<TSource>(IEnumerable<TSource>) |
Sıradaki ilk öğeyi döndürür.Returns the first element of a sequence. |
| First<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Belirli bir koşulu karşılayan bir dizideki ilk öğeyi döndürür.Returns the first element in a sequence that satisfies a specified condition. |
| FirstOrDefault<TSource>(IEnumerable<TSource>) |
Bir dizinin ilk öğesini veya dizi hiçbir öğe içermiyorsa varsayılan değeri döndürür.Returns the first element of a sequence, or a default value if the sequence contains no elements. |
| FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Bu tür bir öğe bulunamazsa, bir koşulu karşılayan dizinin ilk öğesini veya varsayılan değeri döndürür.Returns the first element of the sequence that satisfies a condition or a default value if no such element is found. |
| GroupBy<TSource,TKey,TElement,TResult>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>, Func<TKey,IEnumerable<TElement>,TResult>) |
Bir dizinin öğelerini belirtilen bir anahtar Seçicisi işlevine göre gruplandırır ve her bir gruptan ve onun anahtarından bir sonuç değeri oluşturur.Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. Her grubun öğeleri belirtilen bir işlev kullanılarak yansıtıllardır.The elements of each group are projected by using a specified function. |
| GroupBy<TSource,TKey,TElement,TResult>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>, Func<TKey,IEnumerable<TElement>,TResult>, IEqualityComparer<TKey>) |
Bir dizinin öğelerini belirtilen bir anahtar Seçicisi işlevine göre gruplandırır ve her bir gruptan ve onun anahtarından bir sonuç değeri oluşturur.Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. Anahtar değerleri belirtilen karşılaştırıcı kullanılarak karşılaştırılır ve her grubun öğeleri belirtilen bir işlev kullanılarak yansıtılmakta.Key values are compared by using a specified comparer, and the elements of each group are projected by using a specified function. |
| GroupBy<TSource,TKey,TElement>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>) |
Bir dizinin öğelerini belirtilen bir anahtar Seçici işlevine göre gruplandırır ve belirtilen bir işlevi kullanarak her grup için öğeleri projeler halinde gruplandırır.Groups the elements of a sequence according to a specified key selector function and projects the elements for each group by using a specified function. |
| GroupBy<TSource,TKey,TElement>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>, IEqualityComparer<TKey>) |
Bir sıranın öğelerini bir anahtar Seçici işlevine göre gruplandırır.Groups the elements of a sequence according to a key selector function. Anahtarlar bir karşılaştırıcı kullanılarak karşılaştırılır ve her grubun öğeleri belirtilen bir işlev kullanılarak yansıtılmakta.The keys are compared by using a comparer and each group's elements are projected by using a specified function. |
| GroupBy<TSource,TKey,TResult>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TKey,IEnumerable<TSource>,TResult>) |
Bir dizinin öğelerini belirtilen bir anahtar Seçicisi işlevine göre gruplandırır ve her bir gruptan ve onun anahtarından bir sonuç değeri oluşturur.Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. |
| GroupBy<TSource,TKey,TResult>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TKey,IEnumerable<TSource>,TResult>, IEqualityComparer<TKey>) |
Bir dizinin öğelerini belirtilen bir anahtar Seçicisi işlevine göre gruplandırır ve her bir gruptan ve onun anahtarından bir sonuç değeri oluşturur.Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. Anahtarlar, belirtilen karşılaştırıcı kullanılarak karşılaştırılır.The keys are compared by using a specified comparer. |
| GroupBy<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>) |
Bir dizinin öğelerini belirtilen bir anahtar Seçicisi işlevine göre gruplandırır.Groups the elements of a sequence according to a specified key selector function. |
| GroupBy<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>, IEqualityComparer<TKey>) |
Bir dizinin öğelerini belirtilen bir anahtar Seçicisi işlevine göre gruplandırır ve belirtilen karşılaştırıcıyı kullanarak anahtarları karşılaştırır.Groups the elements of a sequence according to a specified key selector function and compares the keys by using a specified comparer. |
| GroupJoin<TOuter,TInner,TKey,TResult>(IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter,TKey>, Func<TInner,TKey>, Func<TOuter,IEnumerable<TInner>,TResult>) |
Anahtarların eşitliğine göre iki sıranın öğelerini karşılıklı olarak ilişkilendirir ve sonuçları gruplandırır.Correlates the elements of two sequences based on equality of keys and groups the results. Anahtarları karşılaştırmak için varsayılan eşitlik karşılaştırıcısı kullanılır.The default equality comparer is used to compare keys. |
| GroupJoin<TOuter,TInner,TKey,TResult>(IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter,TKey>, Func<TInner,TKey>, Func<TOuter,IEnumerable<TInner>,TResult>, IEqualityComparer<TKey>) |
İki sıranın öğelerini anahtar eşitliğine göre ilişkilendirir ve sonuçları gruplandırır.Correlates the elements of two sequences based on key equality and groups the results. IEqualityComparer<T>Anahtarları karşılaştırmak için belirtilen bir kullanılır.A specified IEqualityComparer<T> is used to compare keys. |
| Intersect<TSource>(IEnumerable<TSource>, IEnumerable<TSource>) |
Değerleri karşılaştırmak için varsayılan eşitlik karşılaştırıcıyı kullanarak iki sıranın küme kesişimini üretir.Produces the set intersection of two sequences by using the default equality comparer to compare values. |
| Intersect<TSource>(IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) |
Değerleri karşılaştırmak için belirtilen ' i kullanarak iki sıranın küme kesişimini üretir IEqualityComparer<T> .Produces the set intersection of two sequences by using the specified IEqualityComparer<T> to compare values. |
| Join<TOuter,TInner,TKey,TResult>(IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter,TKey>, Func<TInner,TKey>, Func<TOuter,TInner,TResult>) |
İki sıranın öğelerini eşleşen anahtarlara göre karşılıklı olarak ilişkilendirir.Correlates the elements of two sequences based on matching keys. Anahtarları karşılaştırmak için varsayılan eşitlik karşılaştırıcısı kullanılır.The default equality comparer is used to compare keys. |
| Join<TOuter,TInner,TKey,TResult>(IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter,TKey>, Func<TInner,TKey>, Func<TOuter,TInner,TResult>, IEqualityComparer<TKey>) |
İki sıranın öğelerini eşleşen anahtarlara göre karşılıklı olarak ilişkilendirir.Correlates the elements of two sequences based on matching keys. IEqualityComparer<T>Anahtarları karşılaştırmak için belirtilen bir kullanılır.A specified IEqualityComparer<T> is used to compare keys. |
| Last<TSource>(IEnumerable<TSource>) |
Sıradaki son öğeyi döndürür.Returns the last element of a sequence. |
| Last<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Belirtilen bir koşulu karşılayan bir dizinin son öğesini döndürür.Returns the last element of a sequence that satisfies a specified condition. |
| LastOrDefault<TSource>(IEnumerable<TSource>) |
Bir sıranın son öğesini veya dizi hiçbir öğe içermiyorsa varsayılan değeri döndürür.Returns the last element of a sequence, or a default value if the sequence contains no elements. |
| LastOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Böyle bir öğe bulunmazsa bir koşulu karşılayan bir sıranın son öğesini veya varsayılan değeri döndürür.Returns the last element of a sequence that satisfies a condition or a default value if no such element is found. |
| LongCount<TSource>(IEnumerable<TSource>) |
Int64Bir dizideki toplam öğe sayısını temsil eden bir döndürür.Returns an Int64 that represents the total number of elements in a sequence. |
| LongCount<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Bir Int64 dizideki kaç öğenin bir koşulu karşılayıp karşılamadığını temsil eden bir döndürür.Returns an Int64 that represents how many elements in a sequence satisfy a condition. |
| Max(IEnumerable<Decimal>) |
Değer dizisindeki en büyük değeri döndürür Decimal .Returns the maximum value in a sequence of Decimal values. |
| Max(IEnumerable<Double>) |
Değer dizisindeki en büyük değeri döndürür Double .Returns the maximum value in a sequence of Double values. |
| Max(IEnumerable<Int32>) |
Değer dizisindeki en büyük değeri döndürür Int32 .Returns the maximum value in a sequence of Int32 values. |
| Max(IEnumerable<Int64>) |
Değer dizisindeki en büyük değeri döndürür Int64 .Returns the maximum value in a sequence of Int64 values. |
| Max(IEnumerable<Nullable<Decimal>>) |
Null yapılabilir değerler sırasındaki en büyük değeri döndürür Decimal .Returns the maximum value in a sequence of nullable Decimal values. |
| Max(IEnumerable<Nullable<Double>>) |
Null yapılabilir değerler sırasındaki en büyük değeri döndürür Double .Returns the maximum value in a sequence of nullable Double values. |
| Max(IEnumerable<Nullable<Int32>>) |
Null yapılabilir değerler sırasındaki en büyük değeri döndürür Int32 .Returns the maximum value in a sequence of nullable Int32 values. |
| Max(IEnumerable<Nullable<Int64>>) |
Null yapılabilir değerler sırasındaki en büyük değeri döndürür Int64 .Returns the maximum value in a sequence of nullable Int64 values. |
| Max(IEnumerable<Nullable<Single>>) |
Null yapılabilir değerler sırasındaki en büyük değeri döndürür Single .Returns the maximum value in a sequence of nullable Single values. |
| Max(IEnumerable<Single>) |
Değer dizisindeki en büyük değeri döndürür Single .Returns the maximum value in a sequence of Single values. |
| Max<TSource,TResult>(IEnumerable<TSource>, Func<TSource,TResult>) |
Genel bir dizinin her öğesinde bir Transform işlevini çağırır ve elde edilen en büyük değeri döndürür.Invokes a transform function on each element of a generic sequence and returns the maximum resulting value. |
| Max<TSource>(IEnumerable<TSource>) |
Genel dizideki en büyük değeri döndürür.Returns the maximum value in a generic sequence. |
| Max<TSource>(IEnumerable<TSource>, Func<TSource,Decimal>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en büyük değeri döndürür Decimal .Invokes a transform function on each element of a sequence and returns the maximum Decimal value. |
| Max<TSource>(IEnumerable<TSource>, Func<TSource,Double>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en büyük değeri döndürür Double .Invokes a transform function on each element of a sequence and returns the maximum Double value. |
| Max<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en büyük değeri döndürür Int32 .Invokes a transform function on each element of a sequence and returns the maximum Int32 value. |
| Max<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en büyük değeri döndürür Int64 .Invokes a transform function on each element of a sequence and returns the maximum Int64 value. |
| Max<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Decimal>>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en fazla boş değer atanabilir Decimal değeri döndürür.Invokes a transform function on each element of a sequence and returns the maximum nullable Decimal value. |
| Max<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Double>>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en fazla boş değer atanabilir Double değeri döndürür.Invokes a transform function on each element of a sequence and returns the maximum nullable Double value. |
| Max<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int32>>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en fazla boş değer atanabilir Int32 değeri döndürür.Invokes a transform function on each element of a sequence and returns the maximum nullable Int32 value. |
| Max<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int64>>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en fazla boş değer atanabilir Int64 değeri döndürür.Invokes a transform function on each element of a sequence and returns the maximum nullable Int64 value. |
| Max<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Single>>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en fazla boş değer atanabilir Single değeri döndürür.Invokes a transform function on each element of a sequence and returns the maximum nullable Single value. |
| Max<TSource>(IEnumerable<TSource>, Func<TSource,Single>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en büyük değeri döndürür Single .Invokes a transform function on each element of a sequence and returns the maximum Single value. |
| Min(IEnumerable<Decimal>) |
Değer dizisindeki en küçük değeri döndürür Decimal .Returns the minimum value in a sequence of Decimal values. |
| Min(IEnumerable<Double>) |
Değer dizisindeki en küçük değeri döndürür Double .Returns the minimum value in a sequence of Double values. |
| Min(IEnumerable<Int32>) |
Değer dizisindeki en küçük değeri döndürür Int32 .Returns the minimum value in a sequence of Int32 values. |
| Min(IEnumerable<Int64>) |
Değer dizisindeki en küçük değeri döndürür Int64 .Returns the minimum value in a sequence of Int64 values. |
| Min(IEnumerable<Nullable<Decimal>>) |
Null yapılabilir değerler sırasındaki en küçük değeri döndürür Decimal .Returns the minimum value in a sequence of nullable Decimal values. |
| Min(IEnumerable<Nullable<Double>>) |
Null yapılabilir değerler sırasındaki en küçük değeri döndürür Double .Returns the minimum value in a sequence of nullable Double values. |
| Min(IEnumerable<Nullable<Int32>>) |
Null yapılabilir değerler sırasındaki en küçük değeri döndürür Int32 .Returns the minimum value in a sequence of nullable Int32 values. |
| Min(IEnumerable<Nullable<Int64>>) |
Null yapılabilir değerler sırasındaki en küçük değeri döndürür Int64 .Returns the minimum value in a sequence of nullable Int64 values. |
| Min(IEnumerable<Nullable<Single>>) |
Null yapılabilir değerler sırasındaki en küçük değeri döndürür Single .Returns the minimum value in a sequence of nullable Single values. |
| Min(IEnumerable<Single>) |
Değer dizisindeki en küçük değeri döndürür Single .Returns the minimum value in a sequence of Single values. |
| Min<TSource,TResult>(IEnumerable<TSource>, Func<TSource,TResult>) |
Genel bir dizinin her öğesinde bir Transform işlevini çağırır ve elde edilen en küçük değeri döndürür.Invokes a transform function on each element of a generic sequence and returns the minimum resulting value. |
| Min<TSource>(IEnumerable<TSource>) |
Genel bir dizideki en küçük değeri döndürür.Returns the minimum value in a generic sequence. |
| Min<TSource>(IEnumerable<TSource>, Func<TSource,Decimal>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en küçük değeri döndürür Decimal .Invokes a transform function on each element of a sequence and returns the minimum Decimal value. |
| Min<TSource>(IEnumerable<TSource>, Func<TSource,Double>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en küçük değeri döndürür Double .Invokes a transform function on each element of a sequence and returns the minimum Double value. |
| Min<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en küçük değeri döndürür Int32 .Invokes a transform function on each element of a sequence and returns the minimum Int32 value. |
| Min<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en küçük değeri döndürür Int64 .Invokes a transform function on each element of a sequence and returns the minimum Int64 value. |
| Min<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Decimal>>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en az boş değer atanabilir Decimal değeri döndürür.Invokes a transform function on each element of a sequence and returns the minimum nullable Decimal value. |
| Min<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Double>>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en az boş değer atanabilir Double değeri döndürür.Invokes a transform function on each element of a sequence and returns the minimum nullable Double value. |
| Min<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int32>>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en az boş değer atanabilir Int32 değeri döndürür.Invokes a transform function on each element of a sequence and returns the minimum nullable Int32 value. |
| Min<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int64>>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en az boş değer atanabilir Int64 değeri döndürür.Invokes a transform function on each element of a sequence and returns the minimum nullable Int64 value. |
| Min<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Single>>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en az boş değer atanabilir Single değeri döndürür.Invokes a transform function on each element of a sequence and returns the minimum nullable Single value. |
| Min<TSource>(IEnumerable<TSource>, Func<TSource,Single>) |
Bir dizideki her öğe için bir Transform işlevini çağırır ve en küçük değeri döndürür Single .Invokes a transform function on each element of a sequence and returns the minimum Single value. |
| OfType<TResult>(IEnumerable) |
Öğesinin öğelerini IEnumerable belirtilen bir türe göre filtreler.Filters the elements of an IEnumerable based on a specified type. |
| OrderBy<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>) |
Bir dizinin öğelerini bir anahtara göre artan düzende sıralar.Sorts the elements of a sequence in ascending order according to a key. |
| OrderBy<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>, IComparer<TKey>) |
Belirtilen karşılaştırıcıyı kullanarak bir sıranın öğelerini artan düzende sıralar.Sorts the elements of a sequence in ascending order by using a specified comparer. |
| OrderByDescending<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>) |
Bir dizinin öğelerini bir anahtara göre azalan düzende sıralar.Sorts the elements of a sequence in descending order according to a key. |
| OrderByDescending<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>, IComparer<TKey>) |
Belirtilen karşılaştırıcıyı kullanarak bir dizinin öğelerini azalan sırada sıralar.Sorts the elements of a sequence in descending order by using a specified comparer. |
| Prepend<TSource>(IEnumerable<TSource>, TSource) |
Dizinin başlangıcına bir değer ekler.Adds a value to the beginning of the sequence. |
| Range(Int32, Int32) |
Belirtilen bir Aralık içinde bir integral sayı dizisi oluşturur.Generates a sequence of integral numbers within a specified range. |
| Repeat<TResult>(TResult, Int32) |
Yinelenen bir değer içeren bir dizi oluşturur.Generates a sequence that contains one repeated value. |
| Reverse<TSource>(IEnumerable<TSource>) |
Bir dizideki öğelerin sırasını tersine çevirir.Inverts the order of the elements in a sequence. |
| Select<TSource,TResult>(IEnumerable<TSource>, Func<TSource,Int32,TResult>) |
Öğenin dizinini ekleyerek bir sıranın her öğesini yeni bir biçimde projeler.Projects each element of a sequence into a new form by incorporating the element's index. |
| Select<TSource,TResult>(IEnumerable<TSource>, Func<TSource,TResult>) |
Bir dizinin her öğesini yeni bir biçimde projeler.Projects each element of a sequence into a new form. |
| SelectMany<TSource,TCollection,TResult>(IEnumerable<TSource>, Func<TSource,IEnumerable<TCollection>>, Func<TSource,TCollection,TResult>) |
Bir dizinin her bir öğesi için olan projeler IEnumerable<T> , ortaya çıkan dizileri tek bir sırayla düzleştirir ve içindeki her öğe için bir sonuç Seçicisi işlevini çağırır.Projects each element of a sequence to an IEnumerable<T>, flattens the resulting sequences into one sequence, and invokes a result selector function on each element therein. |
| SelectMany<TSource,TCollection,TResult>(IEnumerable<TSource>, Func<TSource,Int32,IEnumerable<TCollection>>, Func<TSource,TCollection,TResult>) |
Bir dizinin her bir öğesi için olan projeler IEnumerable<T> , ortaya çıkan dizileri tek bir sırayla düzleştirir ve içindeki her öğe için bir sonuç Seçicisi işlevini çağırır.Projects each element of a sequence to an IEnumerable<T>, flattens the resulting sequences into one sequence, and invokes a result selector function on each element therein. Her kaynak öğenin dizini, bu öğenin ara tasarlanan formunda kullanılır.The index of each source element is used in the intermediate projected form of that element. |
| SelectMany<TSource,TResult>(IEnumerable<TSource>, Func<TSource,IEnumerable<TResult>>) |
Bir sıranın her bir öğesini bir öğesine IEnumerable<T> ve ortaya çıkan dizileri tek bir sırayla düzleştirir.Projects each element of a sequence to an IEnumerable<T> and flattens the resulting sequences into one sequence. |
| SelectMany<TSource,TResult>(IEnumerable<TSource>, Func<TSource,Int32,IEnumerable<TResult>>) |
Bir sıranın her bir öğesini bir öğesine IEnumerable<T> ve ortaya çıkan dizileri tek bir sırayla düzleştirir.Projects each element of a sequence to an IEnumerable<T>, and flattens the resulting sequences into one sequence. Her kaynak öğenin dizini, bu öğenin öngörülen formunda kullanılır.The index of each source element is used in the projected form of that element. |
| SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>) |
İki sıranın, türleri için varsayılan eşitlik karşılaştırıcıyı kullanarak öğeleri karşılaştırarak eşit olup olmadığını belirler.Determines whether two sequences are equal by comparing the elements by using the default equality comparer for their type. |
| SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) |
İki sıranın, öğelerini belirtilen bir kullanarak karşılaştırarak eşit olup olmadığını belirler IEqualityComparer<T> .Determines whether two sequences are equal by comparing their elements by using a specified IEqualityComparer<T>. |
| Single<TSource>(IEnumerable<TSource>) |
Sıranın tek bir öğesini döndürür ve dizide tam olarak bir öğe yoksa bir özel durum oluşturur.Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence. |
| Single<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Belirtilen koşulu karşılayan bir dizinin tek öğesini döndürür ve birden fazla öğe varsa bir özel durum oluşturur.Returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists. |
| SingleOrDefault<TSource>(IEnumerable<TSource>) |
Bir dizinin tek bir öğesini veya dizi boşsa varsayılan değeri döndürür; dizide birden fazla öğe varsa, bu yöntem bir özel durum oluşturur.Returns the only element of a sequence, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence. |
| SingleOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Belirtilen bir koşulu veya böyle bir öğe yoksa varsayılan değeri karşılayan bir dizinin tek öğesini döndürür; Bu yöntem, koşulu karşılıyorsa, birden fazla öğe bir özel durum oluşturur.Returns the only element of a sequence that satisfies a specified condition or a default value if no such element exists; this method throws an exception if more than one element satisfies the condition. |
| Skip<TSource>(IEnumerable<TSource>, Int32) |
Bir dizide belirtilen sayıda öğeyi atlar ve ardından kalan öğeleri döndürür.Bypasses a specified number of elements in a sequence and then returns the remaining elements. |
| SkipLast<TSource>(IEnumerable<TSource>, Int32) |
|
| SkipWhile<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Belirtilen koşul doğru olduğu sürece dizideki öğeleri atlar ve kalan öğeleri döndürür.Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. |
| SkipWhile<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>) |
Belirtilen koşul doğru olduğu sürece dizideki öğeleri atlar ve kalan öğeleri döndürür.Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. Öğenin dizini koşul işlevinin mantığında kullanılır.The element's index is used in the logic of the predicate function. |
| Sum(IEnumerable<Decimal>) |
Bir değer dizisinin toplamını hesaplar Decimal .Computes the sum of a sequence of Decimal values. |
| Sum(IEnumerable<Double>) |
Bir değer dizisinin toplamını hesaplar Double .Computes the sum of a sequence of Double values. |
| Sum(IEnumerable<Int32>) |
Bir değer dizisinin toplamını hesaplar Int32 .Computes the sum of a sequence of Int32 values. |
| Sum(IEnumerable<Int64>) |
Bir değer dizisinin toplamını hesaplar Int64 .Computes the sum of a sequence of Int64 values. |
| Sum(IEnumerable<Nullable<Decimal>>) |
Null yapılabilir değerler dizisinin toplamını hesaplar Decimal .Computes the sum of a sequence of nullable Decimal values. |
| Sum(IEnumerable<Nullable<Double>>) |
Null yapılabilir değerler dizisinin toplamını hesaplar Double .Computes the sum of a sequence of nullable Double values. |
| Sum(IEnumerable<Nullable<Int32>>) |
Null yapılabilir değerler dizisinin toplamını hesaplar Int32 .Computes the sum of a sequence of nullable Int32 values. |
| Sum(IEnumerable<Nullable<Int64>>) |
Null yapılabilir değerler dizisinin toplamını hesaplar Int64 .Computes the sum of a sequence of nullable Int64 values. |
| Sum(IEnumerable<Nullable<Single>>) |
Null yapılabilir değerler dizisinin toplamını hesaplar Single .Computes the sum of a sequence of nullable Single values. |
| Sum(IEnumerable<Single>) |
Bir değer dizisinin toplamını hesaplar Single .Computes the sum of a sequence of Single values. |
| Sum<TSource>(IEnumerable<TSource>, Func<TSource,Decimal>) |
DecimalGiriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen değer dizisinin toplamını hesaplar.Computes the sum of the sequence of Decimal values that are obtained by invoking a transform function on each element of the input sequence. |
| Sum<TSource>(IEnumerable<TSource>, Func<TSource,Double>) |
DoubleGiriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen değer dizisinin toplamını hesaplar.Computes the sum of the sequence of Double values that are obtained by invoking a transform function on each element of the input sequence. |
| Sum<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) |
Int32Giriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen değer dizisinin toplamını hesaplar.Computes the sum of the sequence of Int32 values that are obtained by invoking a transform function on each element of the input sequence. |
| Sum<TSource>(IEnumerable<TSource>, Func<TSource,Int64>) |
Int64Giriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen değer dizisinin toplamını hesaplar.Computes the sum of the sequence of Int64 values that are obtained by invoking a transform function on each element of the input sequence. |
| Sum<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Decimal>>) |
DecimalGiriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen null yapılabilir değerler dizisinin toplamını hesaplar.Computes the sum of the sequence of nullable Decimal values that are obtained by invoking a transform function on each element of the input sequence. |
| Sum<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Double>>) |
DoubleGiriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen null yapılabilir değerler dizisinin toplamını hesaplar.Computes the sum of the sequence of nullable Double values that are obtained by invoking a transform function on each element of the input sequence. |
| Sum<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int32>>) |
Int32Giriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen null yapılabilir değerler dizisinin toplamını hesaplar.Computes the sum of the sequence of nullable Int32 values that are obtained by invoking a transform function on each element of the input sequence. |
| Sum<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int64>>) |
Int64Giriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen null yapılabilir değerler dizisinin toplamını hesaplar.Computes the sum of the sequence of nullable Int64 values that are obtained by invoking a transform function on each element of the input sequence. |
| Sum<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Single>>) |
SingleGiriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen null yapılabilir değerler dizisinin toplamını hesaplar.Computes the sum of the sequence of nullable Single values that are obtained by invoking a transform function on each element of the input sequence. |
| Sum<TSource>(IEnumerable<TSource>, Func<TSource,Single>) |
SingleGiriş dizisinin her öğesinde bir Transform işlevi çağırarak elde edilen değer dizisinin toplamını hesaplar.Computes the sum of the sequence of Single values that are obtained by invoking a transform function on each element of the input sequence. |
| Take<TSource>(IEnumerable<TSource>, Int32) |
Bir sıranın başından itibaren belirtilen sayıda bitişik öğeyi döndürür.Returns a specified number of contiguous elements from the start of a sequence. |
| TakeLast<TSource>(IEnumerable<TSource>, Int32) |
Öğesinden son öğeleri içeren yeni bir sıralanabilir koleksiyon döndürür |
| TakeWhile<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Belirtilen koşul doğru olduğu sürece bir dizideki öğeleri döndürür.Returns elements from a sequence as long as a specified condition is true. |
| TakeWhile<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>) |
Belirtilen koşul doğru olduğu sürece bir dizideki öğeleri döndürür.Returns elements from a sequence as long as a specified condition is true. Öğenin dizini koşul işlevinin mantığında kullanılır.The element's index is used in the logic of the predicate function. |
| ThenBy<TSource,TKey>(IOrderedEnumerable<TSource>, Func<TSource,TKey>) |
Bir dizide, bir anahtara göre artan düzende öğelerin sonraki sıralamasını gerçekleştirir.Performs a subsequent ordering of the elements in a sequence in ascending order according to a key. |
| ThenBy<TSource,TKey>(IOrderedEnumerable<TSource>, Func<TSource,TKey>, IComparer<TKey>) |
Belirtilen karşılaştırıcıyı kullanarak bir dizideki öğelerin sonraki sıralamasını artan sırada gerçekleştirir.Performs a subsequent ordering of the elements in a sequence in ascending order by using a specified comparer. |
| ThenByDescending<TSource,TKey>(IOrderedEnumerable<TSource>, Func<TSource,TKey>) |
Bir anahtara göre bir dizideki öğelerin sonraki sıralamasını azalan sırada gerçekleştirir.Performs a subsequent ordering of the elements in a sequence in descending order, according to a key. |
| ThenByDescending<TSource,TKey>(IOrderedEnumerable<TSource>, Func<TSource,TKey>, IComparer<TKey>) |
Belirtilen karşılaştırıcıyı kullanarak dizideki öğelerin sonraki sıralamasını azalan sırada gerçekleştirir.Performs a subsequent ordering of the elements in a sequence in descending order by using a specified comparer. |
| ToArray<TSource>(IEnumerable<TSource>) |
Bir öğesinden bir dizi oluşturur IEnumerable<T> .Creates an array from a IEnumerable<T>. |
| ToDictionary<TSource,TKey,TElement>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>) |
Dictionary<TKey,TValue> IEnumerable<T> Belirtilen anahtar seçicisine ve öğe Seçici işlevlerine göre bir öğesinden bir oluşturur.Creates a Dictionary<TKey,TValue> from an IEnumerable<T> according to specified key selector and element selector functions. |
| ToDictionary<TSource,TKey,TElement>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>, IEqualityComparer<TKey>) |
Dictionary<TKey,TValue> IEnumerable<T> Belirtilen anahtar Seçici işlevine, karşılaştırıcının ve öğe Seçici işlevine göre bir öğesinden bir oluşturur.Creates a Dictionary<TKey,TValue> from an IEnumerable<T> according to a specified key selector function, a comparer, and an element selector function. |
| ToDictionary<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>) |
Dictionary<TKey,TValue> IEnumerable<T> Belirtilen anahtar Seçici işlevine göre bir öğesinden bir oluşturur.Creates a Dictionary<TKey,TValue> from an IEnumerable<T> according to a specified key selector function. |
| ToDictionary<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>, IEqualityComparer<TKey>) |
Dictionary<TKey,TValue> IEnumerable<T> Belirtilen anahtar Seçici işlevine ve anahtar karşılaştırıcısı 'na göre bir öğesinden bir oluşturur.Creates a Dictionary<TKey,TValue> from an IEnumerable<T> according to a specified key selector function and key comparer. |
| ToHashSet<TSource>(IEnumerable<TSource>) |
Kaynağından bir oluşturur HashSet<T> IEnumerable<T> .Creates a HashSet<T> from an IEnumerable<T>. |
| ToHashSet<TSource>(IEnumerable<TSource>, IEqualityComparer<TSource>) |
HashSet<T> IEnumerable<T> Anahtarları karşılaştırmak için kullanarak öğesinden bir oluşturur |
| ToList<TSource>(IEnumerable<TSource>) |
Kaynağından bir oluşturur List<T> IEnumerable<T> .Creates a List<T> from an IEnumerable<T>. |
| ToLookup<TSource,TKey,TElement>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>) |
Lookup<TKey,TElement> IEnumerable<T> Belirtilen anahtar seçicisine ve öğe Seçici işlevlerine göre bir öğesinden bir oluşturur.Creates a Lookup<TKey,TElement> from an IEnumerable<T> according to specified key selector and element selector functions. |
| ToLookup<TSource,TKey,TElement>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>, IEqualityComparer<TKey>) |
Bir Lookup<TKey,TElement> IEnumerable<T> karşılaştırıcı ve bir öğe Seçici işlevi olan belirtilen bir anahtar Seçici işlevine göre bir ile oluşturur.Creates a Lookup<TKey,TElement> from an IEnumerable<T> according to a specified key selector function, a comparer and an element selector function. |
| ToLookup<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>) |
Lookup<TKey,TElement> IEnumerable<T> Belirtilen anahtar Seçici işlevine göre bir öğesinden bir oluşturur.Creates a Lookup<TKey,TElement> from an IEnumerable<T> according to a specified key selector function. |
| ToLookup<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>, IEqualityComparer<TKey>) |
Lookup<TKey,TElement> IEnumerable<T> Belirtilen anahtar Seçici işlevine ve anahtar karşılaştırıcısı 'na göre bir öğesinden bir oluşturur.Creates a Lookup<TKey,TElement> from an IEnumerable<T> according to a specified key selector function and key comparer. |
| Union<TSource>(IEnumerable<TSource>, IEnumerable<TSource>) |
Varsayılan eşitlik karşılaştırıcıyı kullanarak iki sıranın set birleşimini üretir.Produces the set union of two sequences by using the default equality comparer. |
| Union<TSource>(IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) |
Belirtilen bir kullanarak iki sıranın set birleşimini üretir IEqualityComparer<T> .Produces the set union of two sequences by using a specified IEqualityComparer<T>. |
| Where<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Bir koşula göre bir değer dizisini filtreler.Filters a sequence of values based on a predicate. |
| Where<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>) |
Bir koşula göre bir değer dizisini filtreler.Filters a sequence of values based on a predicate. Her öğenin dizini koşul işlevinin mantığındaki kullanılır.Each element's index is used in the logic of the predicate function. |
| Zip<TFirst,TSecond,TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst,TSecond,TResult>) |
Belirtilen bir işlevi, iki sıranın karşılık gelen öğelerine uygular ve sonuçların bir dizisini üretir.Applies a specified function to the corresponding elements of two sequences, producing a sequence of the results. |
| Zip<TFirst,TSecond>(IEnumerable<TFirst>, IEnumerable<TSecond>) |
Belirtilen iki dizideki öğeleri içeren bir tanımlama grubu sırası üretir.Produces a sequence of tuples with elements from the two specified sequences. |