Tools, FAQ, Tutorials:
"MyLib.vb" - VB Class and Library
How to create a VB class and build it into a library?
✍: FYIcenter.com
If you want to create a VB class and build it into a library,
you can follow this tutorial:
1. Create the class source code file, MyLib.vb, with a text editor:
' MyLib.vb
' Copyright (c) FYIcenter.com
Public Class MyLib
Public Shared Sub PrintHello()
Console.WriteLine("Hello World! - From MyLib.")
End Sub
End Class
2. Compile and build the static library with the "vbc /target:library" command:
>vbc /target:library MyLib.vb Microsoft (R) Visual Basic Compiler version 2.2.0.61624 Copyright (C) Microsoft Corporation. All rights reserved. >dir MyLib.* 09:47 AM 6,144 MyLib.dll 09:42 AM 182 MyLib.vb
3. Distribute the library file, MyLib.dll, to others to use.
⇒ "MyLibApp.vb" - Call VB Class from Library
⇐ VB Command Line Compiler in Visual Studio 2017
2017-08-13, ∼2864🔥, 0💬
Popular Posts:
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set...
How to search for the first match of a regular expression using re.search()? The re.search() functio...
How To Merge Cells in a Column? If you want to merge multiple cells vertically in a row, you need to...
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...