小编给大家分享一下如何使用CSC.exe将module组合成assembly,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
专注于为中小企业提供网站设计、成都网站制作服务,电脑端+手机端+微信端的三站合一,更高效的管理,为中小企业阳曲免费做网站提供优质的服务。我们立足成都,凝聚了一批互联网行业人才,有力地推动了上1000家企业的稳健成长,帮助中小企业通过网站建设实现规模扩充和转变。
代码如下:
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; } } }
csc.exe /t:module FrequentlyUsedCalculator.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; } } }
csc.exe /t:module RarelyUsedCalculator.cs
al.exe /out:MyClassLib.dll /t:library FrequentlyUsedCalculator.netmodule RarelyUsedCalculator.netmodule
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(); } } }
csc.exe /out:Program.exe /t:exe /r:MyClassLib.dll Program.cs
以上是“如何使用CSC.exe将module组合成assembly”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联行业资讯频道!
网站名称:如何使用CSC.exe将module组合成assembly
转载来源:https://www.cdcxhl.com/article20/ijegco.html
成都网站建设公司_创新互联,为您提供微信公众号、品牌网站制作、App开发、软件开发、做网站、网站维护
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联