This file contains 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 class MetaElement<T> | |
{ | |
public MetaElement(T value, bool isLast, bool isFirst, int index) | |
{ | |
this.Value = value; | |
this.IsLast = isLast; | |
this.IsFirst = isFirst; | |
this.Index = index; | |
} | |
public int Index { get; private set; } |
This file contains 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
using System; | |
using System.Reactive; | |
using System.Reactive.Linq; | |
namespace RxFireAndForget | |
{ | |
public static class RxExtensions | |
{ | |
/// <summary> | |
/// Creates an observable that, when subscribed to, will subscribe to the underlying observable, |
NewerOlder