Skip to content

Commit 8c619e9

Browse files
committed
fix c#
1 parent c07961c commit 8c619e9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

samples/MvvmSampleXF/MvvmSampleXF/MvvmSampleXF/Views/ObservableObjectPage.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ public string Name
9191
set => SetProperty(ref name, value);
9292
}
9393

94-
private Task myTask;
94+
private TaskNotifier myTask;
9595

9696
public Task MyTask
9797
{
9898
get => myTask;
99-
private set => SetPropertyAndNotifyOnCompletion(ref myTask, () => myTask, value);
99+
private set => SetPropertyAndNotifyOnCompletion(ref myTask, value);
100100
}
101101

102102
public void ReloadTask()

0 commit comments

Comments
 (0)