diff --git a/Source/ReactiveProperty.NETStandard/ReactiveProperty.cs b/Source/ReactiveProperty.NETStandard/ReactiveProperty.cs index b179ba01..b3b518f5 100644 --- a/Source/ReactiveProperty.NETStandard/ReactiveProperty.cs +++ b/Source/ReactiveProperty.NETStandard/ReactiveProperty.cs @@ -377,7 +377,8 @@ public ReactiveProperty SetValidateNotifyError(Func validator) => /// /// Get INotifyDataErrorInfo's error store /// - public IEnumerable GetErrors(string? propertyName) => CurrentErrors ?? Enumerable.Empty(); + public IEnumerable? GetErrors(string? propertyName) => CurrentErrors; + IEnumerable INotifyDataErrorInfo.GetErrors(string? propertyName) => CurrentErrors ?? Enumerable.Empty(); /// /// Get INotifyDataErrorInfo's error store