亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用CSC.exe將module組合成assembly

發布時間:2021-10-21 10:15:16 來源:億速云 閱讀:136 作者:小新 欄目:編程語言

小編給大家分享一下如何使用CSC.exe將module組合成assembly,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

1、新建一個FrequentlyUsedCalculator.cs文件

代碼如下:

using System;

namespace MyClassLib
{
    public class FrequentlyUsedCalculator
    {
        public int Add(int a, int b)
        {
            return a + b;
        }

        public int Sub(int a, int b)
        {
            return a - b;
        }
    }
}

2、對FrequentlyUsedCalculator.cs文件進行編譯

csc.exe /t:module FrequentlyUsedCalculator.cs

3、新建一個RarelyUsedCalculator.cs文件

代碼如下:

using System;

namespace MyClassLib
{
    public class RarelyUsedCalculator
    {
        public int Multiple(int a,int b)
        {
            return a * b;
        }

        public int Divide(int a, int b)
        {
            return a / b;
        }
    }
}

4、對RarelyUsedCalculator.cs文件進行編譯

csc.exe /t:module RarelyUsedCalculator.cs

如何使用CSC.exe將module組合成assembly

5、將module文件合并成assembly文件

al.exe /out:MyClassLib.dll /t:library FrequentlyUsedCalculator.netmodule RarelyUsedCalculator.netmodule

如何使用CSC.exe將module組合成assembly

6、新建一個Program.cs文件

using System;
using MyClassLib;

namespace MyConsoleApp
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write("請輸入第一個整數:");
            int number1 = Convert.ToInt32(Console.ReadLine());
            Console.Write("請輸入第二個整數:");
            int number2 = Convert.ToInt32(Console.ReadLine());
            FrequentlyUsedCalculator cal1 = new FrequentlyUsedCalculator();
            Console.WriteLine("{0} + {1} = {2}", number1, number2, cal1.Add(number1, number2));
            Console.WriteLine("{0} - {1} = {2}", number1, number2, cal1.Sub(number1, number2));
            RarelyUsedCalculator cal2 = new RarelyUsedCalculator();
            Console.WriteLine("{0} * {1} = {2}", number1, number2, cal2.Multiple(number1, number2));
            Console.WriteLine("{0} / {1} = {2}", number1, number2, cal2.Divide(number1, number2));
            Console.ReadKey();
        }
    }
}

7、對Program.cs進行編譯

csc.exe /out:Program.exe /t:exe /r:MyClassLib.dll Program.cs

如何使用CSC.exe將module組合成assembly

8、運行結果

如何使用CSC.exe將module組合成assembly

以上是“如何使用CSC.exe將module組合成assembly”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

万盛区| 定边县| 东海县| 察雅县| 浪卡子县| 桂东县| 六安市| 西安市| 玛曲县| 乐安县| 阿拉善右旗| 遂宁市| 汉沽区| 栖霞市| 沅陵县| 台江县| 油尖旺区| 长白| 新民市| 辽宁省| 尉氏县| 宁南县| 云安县| 清水县| 富川| 马尔康县| 陇南市| 筠连县| 兰西县| 迁安市| 托克托县| 合阳县| 永修县| 金湖县| 阿合奇县| 黔西县| 长阳| 龙泉市| 双桥区| 英超| 潜山县|