Q. Is there an error in the below code?
Code:Private _dblBonus As Double Public ReadOnly Property Bonus As Double Set(ByVal value As Decimal) _dblBonus = value End Set End Property
β
Correct Answer: (C)
Compilation Error
Private _dblBonus As Double Public ReadOnly Property Bonus As Double Set(ByVal value As Decimal) _dblBonus = value End Set End Property
You must be Logged in to update hint/solution