Class And Structure.
Dear Developers I would like to share something which i found while performing one of the development task. Working difference between Class Objects and Structure Objects. If you see them they both are same in low level of the working. Classes has much more feature compared to Structures. The choose come when you have limit property and basis feature needed. Lets see the working Public Class Person Dim strName As String Public Property Name() As String Get Return strName End Get Set(ByVal value As String) strName = value End Set ...