I'm actually more comfortable in Java language for developing apps. But since my requirement now is getting tighter, I need to jump forward into VB.NET well yeah... seems need to adapt some a bit.
Anyway, I typed a lot for making this setter and getter properties inside visual studio;
Public Property supplierId() As Integer
Get
supplierId = iSupplierId
End Get
Set(ByVal value As Integer)
iSupplierId = value
End Set
End Property
Do we have any automatic way to do setting and getting those properties of a variable? Because I found that while I'm in java language and using Netbeans, setter and getter function (or sometimes we called as method) is quite a bit CLICK and CLICK. Everything is done! But here... when I tried in VB.Net, waw... typed, ... hehehe.
Do we have automatically way to insert those setter and getter properties of a variable inside VB.NET?