中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何使用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

高要市| 临湘市| 旬邑县| 巴彦淖尔市| 孟州市| 始兴县| 天长市| 鸡西市| 阿合奇县| 光山县| 阿瓦提县| 翁源县| 尼勒克县| 靖江市| 楚雄市| 乾安县| 临高县| 宁远县| 施秉县| 高邑县| 闻喜县| 锦州市| 固安县| 贵德县| 若尔盖县| 惠水县| 高安市| 巴彦县| 阿合奇县| 新邵县| 大厂| 枣庄市| 万荣县| 泾源县| 上思县| 运城市| 阳春市| 利津县| 商洛市| 通化市| 襄城县|