- Basic Latin U+0000..U+007F (128 символов)
- Английский алфавит
- Датский алфавит
- Basic Latin U+0000..U+007F, Latin-1 Supplement U+0080..U+00FF (256 символов)
- Немецкий алфавит
- Французский алфавит
- Испанский алфавит
- Итальянский алфавит
- Португальский алфавит
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class UniRxExtensions | |
{ | |
public static IObservable<TResult> AggregateRxProperties<TItem, TPropertyValue, TResult>( | |
this IReadOnlyReactiveCollection<TItem> collection, | |
Func<TItem, IReadOnlyReactiveProperty<TPropertyValue>> propertySelector, | |
Func<IEnumerable<TPropertyValue>, TResult> resultSelector) | |
{ | |
var disposable = new CompositeDisposable(); | |
var dictionary = new Dictionary<TItem, IDisposable>(); | |
var subject = new Subject<TResult>().AddTo(disposable); |