Create DLL library : DLL « 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








24.1.DLL
24.1.1.Create DLL library
24.1.2.Use WIN32 Function directly