'Declaration
<DataMemberAttribute()> <NotNullAttribute()> Public Property Description As String
'Usage
Dim instance As TypeMemberInfo Dim value As String instance.Description = value value = instance.Description
[DataMember()] [NotNull()] public string Description {get; set;}
[DataMember()] [NotNull()] public: property String^ Description { 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)
.