0 out of 5 rated this helpful - Rate this topic

Enumerable.Join Method

Correlates the elements of two sequences based on matching keys.

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

  NameDescription
Public method Static member Join<TOuter, TInner, TKey, TResult>(IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, TInner, TResult>) Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
Public method Static member Join<TOuter, TInner, TKey, TResult>(IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, TInner, TResult>, IEqualityComparer<TKey>) Correlates the elements of two sequences based on matching keys. A specified IEqualityComparer<T> is used to compare keys.
Top
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.