'Declaration
<DataMemberAttribute()> <NotNullAttribute()> Public Property DisplayName As String
'Usage
Dim instance As TypeMemberInfo Dim value As String instance.DisplayName = value value = instance.DisplayName
[DataMember()] [NotNull()] public string DisplayName {get; set;}
[DataMember()] [NotNull()] public: property String^ DisplayName { String^ get(); void set ( String^ value); }
Property Value
The value of this property cannot be null
(Nothing
in Visual Basic).
The default value of this property is "" (String.Empty)
.