public void BindAndChange_Depth1_New()
 {
     using IDisposable binding = New.BindTwoWay(_from, _to, x => x.Value, x => x.Value);
     PerformMutations(1);
 }
 public void Change_Depth3_NewSetup()
 {
     Depth3Setup();
     _binding = New.BindTwoWay(_from, _to, x => x.Child.Child.Value, x => x.Child.Child.Value);
 }