Hey,
So I should know what this means but I am very unsure right now.
This is a basic get and set property
My question thoug is: Am I able to assign this to a variable later if I want to know whats stored in it? like so
Would this return the variable stored in _SetHum?
So I should know what this means but I am very unsure right now.
Code:
Private _SetHum As Double
Public Property SetHum() As Double
Get
Return _SetHum
End Get
Set(ByVal value As Double)
_SetHum = value
End Set
End PropertyMy question thoug is: Am I able to assign this to a variable later if I want to know whats stored in it? like so
Code:
Dim h as double = SetHum