Skip to content

Instantly share code, notes, and snippets.

@rkusa
Created September 28, 2010 13:13
Show Gist options
  • Save rkusa/600962 to your computer and use it in GitHub Desktop.
Save rkusa/600962 to your computer and use it in GitHub Desktop.
var statusChangedToReady = from sc in statusChanged
where sc.Status == GeoPositionStatus.Ready
select sc;
var positionChanged = from _ in statusChangedToReady
from pc in watcher.GetPositionChangedEventObservable()
where !pc.EventArgs.Position.Location.IsUnknown
select pc.EventArgs.Position;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment