Esempio n. 1
0
 public void StartUpdatingSourceWhenTargetChanges()
 {
     // We subscribe to the TargetValues and each time we have a new value, we update the source with it
     TargetValues.Subscribe(newValue => _sourceEndpoint.Value = newValue);
 }