Windows VB.Net Tutorial

' Compile  from command line with:
'    VBC /t:library Dog.vb
Option Strict On
Public Class Dog
   Private Name As String
   Public Sub New(name As String)
   End Sub
End Class