Mega Code Archive

 
Categories / VB.Net Tutorial / Windows
 

Create DLL library

' 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