I am trying to figure out the right way of , in a class (got that) and difining a :
Public Property CurrentTimestamp() As String
Get
***missing this part***
End Get
Set(ByVal Value As String)
End Set
End Property
I can not figure out the **missing part** .. How do I grab the system date/time stamp and then return it?
