diff --git a/Rx.NET/Source/src/System.Reactive/Linq/Observable/Latest.cs b/Rx.NET/Source/src/System.Reactive/Linq/Observable/Latest.cs index f1005e5409..62005e4ddc 100644 --- a/Rx.NET/Source/src/System.Reactive/Linq/Observable/Latest.cs +++ b/Rx.NET/Source/src/System.Reactive/Linq/Observable/Latest.cs @@ -116,7 +116,7 @@ public override bool TryMoveNext(out TSource current) switch (kind) { case NotificationKind.OnNext: - current = _value; + current = value; return true; case NotificationKind.OnError: error.Throw();