Structure : Structure « Class Module « VB.Net Tutorial






Structure Money

   Private centsAmount As Integer

   Public Sub New(ByVal amount As Double)
       Me.centsAmount = CInt(amount * 100)
   End Sub

End Structure

Module MyModule

   Sub Main()
       Dim freebie As Money
       Dim carPrice As Money = New Money(3.95)
   End Sub

End Module








6.46.Structure
6.46.1.Structure
6.46.2.Define and use Structure
6.46.3.Define and use structure with modifier
6.46.4.Define Structure
6.46.5.By value or by reference
6.46.6.Use Structure as Function parameter
6.46.7.Use With and Structure
6.46.8.Class Vs Structure in ByValue and ByRef
6.46.9.structure implements interface