SUNWEN tutorial - C# advanced (5)
What I’m going to talk about now is libraries, and let’s learn how to use C# to create a DLL file. Speaking of DLL, everyone must know it. This is a typical representative of WINDOWS, and it is often everyone’s favorite. The target of attack. Haha, no matter what, you still have to learn. Let’s start with how to compile a C# program into a DLL using the command line and how to use it on the client.
This example includes two There are two files, one is Factorial.cs, which is used to calculate the factorial of a number. The other is DigitCounter.cs, which is used to calculate the number of numbers in the passed string parameter.
We can build the library like this, in Do this in command line mode:
csc /target:library /out:Functions.dll Factorial.cs DigitCounter.cs
Let’s talk about the usage of each parameter:
/target:library: Indicate to the system that the output is a DLL library, rather than an EXE executable file.
/out: Functions.dll: Specify the file name of the output DLL, namely Functions.dll. Generally, if you omit the first parameter, the default file name will be The file name of the first file is Factorial.dll.
Next we will create another file, that is, the file using this library, called the client file, FunctionClient.cs. After it is created, compile it with the following language name:
csc /out:FunctionTest.exe /R:Functions.DLL FunctionClient.cs
Let’s talk about the usage of this compilation statement:
/out:FunctionTest.exe: Indicate that the output file name is FunctionTest.exe
/R: Functions.DLL: Point out the library to be referenced. If it is not in the current directory, its full path must be pointed out.
I will write the code of these files below:
000: // LibrariesFactorial. cs
001: using System;
002:
003: namespace Functions
004: {
005: public class Factorial
006: {
007: public static int Calc(int i)
008: {
009: return(( i <= 1) ? 1 : (i * Calc(i-1)));
010: }
011: }
012: }
This is the code of the Factorial.cs file. In line 003, namespace means namespace. According to M$, the library must be packaged according to its namespace so that .NET can load your class correctly.
The following is the content of the DigitCounter.cs file:
000: // LibrariesDigitCounter.cs
001: using System;
002:
003: namespace Functions
004: {
005: public class DigitCount
006: {
007: public static int NumberOfDigits(string theString)
008: {
009 : int count = 0;
010: for ( int i = 0; i < theString.Length; i++ )
011: {
012: if ( Char.IsDigit(theString[i]) )
013: {
014 : count++;
015: }
016: }
017:
018: return count;
019: }
020: }
021: }
Note that the namespace in this example should be consistent with the first one, because they It is the NumberOfDigits method in the same library that calculates the number of numbers in the parameters.
The third file is FunctionClient.cs
We know that once a library is created, it can be used by other classes (nonsense, Otherwise, how can we call it a library?). The following C# program uses the classes in the library we just created.
000: // LibrariesFunctionClient.cs
001: using System;
002: using Functions;
003: class FunctionClient
004: {
005: public static void Main(string[] args)
006: {
007: Console.WriteLine("Function Client");
008:
009: if ( args.Length == 0 )
010: {
011: Console.WriteLine("Usage: FunctionTest ... ");
012: return;
013: }
014:
015: for ( int i = 0; i < args.Length; i++ )
016: {
017: int num = Int32.Parse(args[i]);
018: Console.WriteLine(
019: "The Digit Count for String [{0}] is [{1}]" ,
020: args[i],
021: DigitCount.NumberOfDigits(args[i]));
022: Console.WriteLine(
023: "The Factorial for [{0}] is [{1}]",
024: num,
025: Factorial.Calc(num) );
026: }
027: }
028: }
In line 002, a using Functions specifies a reference to the Functions.DLL class.
If we Type the following command on the command line and you can see the output:
FunctionTest 3 5 10
Output:
Function Client
The Digit Count for String [3] is [1]
The Factorial for [3 ] is [6]
The Digit Count for String [5] is [1]
The Factorial for [5] is [120]
The Digit Count for String [10] is [2]
The Factorial for [10] is [3628800]
Note: When you run this .EXE file, the DLL file it refers to can be in the current directory, a subdirectory, or the CORPATH environment variable. The CORPATH environment variable is in the .NET environment The class path in is used to guide the system to find classes. To put it bluntly, it is CLASSPATH in java. You understand, haha.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Active Directory with C#. Here we discuss the introduction and how Active Directory works in C# along with the syntax and example.

Guide to Random Number Generator in C#. Here we discuss how Random Number Generator work, concept of pseudo-random and secure numbers.

Guide to the Access Modifiers in C#. We have discussed the Introduction Types of Access Modifiers in C# along with examples and outputs.

Guide to C# Data Grid View. Here we discuss the examples of how a data grid view can be loaded and exported from the SQL database or an excel file.

Guide to C# Serialization. Here we discuss the introduction, steps of C# serialization object, working, and example respectively.

Guide to Patterns in C#. Here we discuss the introduction and top 3 types of Patterns in C# along with its examples and code implementation.

Guide to Prime Numbers in C#. Here we discuss the introduction and examples of prime numbers in c# along with code implementation.

Guide to C# SortedSet. Here we discuss a brief overview on C# SortedSet and its Examples along with its Code Implementation and output.
