Пример #1
0
        public static IDisposable WithGeolocator(IReactiveGeolocator implementation)
        {
            var orig = Implementation;

            Implementation = implementation;
            return(Disposable.Create(() => Implementation = orig));
        }
Пример #2
0
 public static IDisposable WithGeolocator(IReactiveGeolocator implementation)
 {
     var orig = Implementation;
     Implementation = implementation;
     return Disposable.Create(() => Implementation = orig);
 }