Skip to content

Commit e173e6a

Browse files
MikeHillbergmairaw
andauthored
Remark for null in UWP (#3771)
* Remark for null in UWP Add a remark that in a UWP app you must use String.Empty rather than null for the property name (to indicate a reset). * Update xml/System.ComponentModel/INotifyPropertyChanged.xml Co-Authored-By: Maira Wenzel <[email protected]> Co-authored-by: Maira Wenzel <[email protected]>
1 parent 641a535 commit e173e6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/System.ComponentModel/INotifyPropertyChanged.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ End Class
390390
<format type="text/markdown"><![CDATA[
391391
392392
## Remarks
393-
The <xref:System.ComponentModel.INotifyPropertyChanged.PropertyChanged> event can indicate all properties on the object have changed by using either `null` or <xref:System.String.Empty?displayProperty=nameWithType> as the property name in the <xref:System.ComponentModel.PropertyChangedEventArgs>.
393+
The <xref:System.ComponentModel.INotifyPropertyChanged.PropertyChanged> event can indicate all properties on the object have changed by using either `null` or <xref:System.String.Empty?displayProperty=nameWithType> as the property name in the <xref:System.ComponentModel.PropertyChangedEventArgs>. Note that in a UWP application, <xref:System.String.Empty?displayProperty=nameWithType> must be used rather than `null`.
394394
395395
396396

0 commit comments

Comments
 (0)