'Declaration
<DataMemberAttribute(False)> <DisplayNameAttribute("")> Public Property PriceSets As List(Of PriceSet)
'Usage
Dim instance As Customer Dim value As List(Of PriceSet) instance.PriceSets = value value = instance.PriceSets
[DataMember(false)] [DisplayName("")] public List<PriceSet> PriceSets {get; set;}
[DataMember(false)] [DisplayName("")] public: property List<PriceSet^>^ PriceSets { List<PriceSet^>^ get(); void set ( List<PriceSet^>^ value); }