Guest User

Untitled

a guest
Jan 17th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. static IObservable<IGroupedObservable<TKey, TSource>> GroupBy<TSource, TKey>(
  2. this IObservable<TSource> source,
  3. Func<TSource, TKey> keySelector)
  4. {
  5. return new GroupByOperator<TSource, TKey>(source, keySelector);
  6. }
Add Comment
Please, Sign In to add comment