Hello People,
How do it do this. I have this at the moment
Private _HotelFacilities As String
Public Property HotelFacilities() As String
Get
Return _HotelFacilities
End Get
Set(ByVal value As String)
_HotelFacilities = value
End Set
End Property
Dim this As New GetAccommodationPricesBLLDim that As AccommodationBO.HotelFacilities = that.GetFacilityText(8684123138917662783)This takes a large INT and returns 4 strings from the BO structure HotelFacilities
If I set the private from string to AccommodationBO.HotelFacilities it is fine
If I set the public from string to AccommodationBO.HotelFacilities it moans because the Set section of the private property is wr ...
Go to the complete details ...