Tools, FAQ, Tutorials:
"MyLib.cs" - VC# Class and Library
How to create a VC# class and build it into a library?
✍: FYIcenter.com
If you want to create a VC# class and build it into a library, you can follow this tutorial:
1. Create the class source code file, MyLib.cs, with a text editor:
// MyLib.cs // Copyright (c) FYIcenter.com using System; namespace fyi { public class MyLib { public static void PrintHello() { Console.WriteLine("Hello World! - From MyLib."); } } }
2. Compile and build the static library with the "csc /target:library" command:
\fyicenter>csc /target:library MyLib.cs Microsoft (R) Visual C# Compiler version 2.2.0.61624 Copyright (C) Microsoft Corporation. All rights reserved. >dir MyLib.* 09:16 AM 234 MyLib.cs 09:17 AM 3,072 MyLib.dll
3. Distribute the library file, MyLib.dll, to others to use.
⇒ "MyLibApp.cs" - Call VC# Class from Library
⇐ VC# Command Line Compiler in Visual Studio 2017
2017-08-06, 2669🔥, 0💬
Popular Posts:
How to start Docker Daemon, "dockerd", on CentOS systems? If you have installed Docker on your CentO...
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...
How To Control Vertical Alignment? By default, text in all table cells are aligned to the top vertic...
How to use the "Ctrl-p Ctrl-q" sequence to detach console from the TTY terminal of container's runni...
What is Azure API Management Developer Portal Admin? The Developer Portal Admin is an Azure Web port...