MathLibrary.cs
/*author:frankdatetime:2017-7-20 10:38:03*/using System;namespace Sample{ public class MathLib { public int Add(int x,int y) { return x + y; } }}
2.9.cs
/*author:frankdatetime:2017-7-20 10:32:58控制台编译的时候可以指定输出的类型:/t:exe 控制台应用程序(默认)/t:library 带有清单的类库/t:module 没有清单的组件/t:winexe Windows应用程序(没有控制台窗口)编译命令例子:csc /t:exe 2.9.cs /r:MathLibrary.dll*/using System;namespace Sample{ public class Program { public static void Main(string[] args) { MathLib mathObj = new MathLib();//如果不是同一命名空间里面的就要对其进行引用 Console.WriteLine(mathObj.Add(7,8)); } }}