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