一个C#类库项目,可以创建许多dll

时间:2018-03-01 07:17:48

标签: c# class dll static-libraries

我可以使用一个C#类库项目来创建许多dll文件,如:

using System;
using System.IO;
namespace ClassLibrary
{
    public class Class1
    {
        static public void Test(int a, int b)
        {
            for (int i = 1; i <= 3; i++)
            {
                //
                //  Same Code
                //
                if (i == 1) { /*......*/}
                if (i == 2) { /*......*/}
                if (i == 3) { /*......*/}
                //
                //  Same Code
                //

                //rename dll from ClassLibrary.dll to ClassLibrary#.dll
                File.Move("...//ClassLibrary.dll", "...//ClassLibrary" + i.ToString() + ".dll");  
            }
        }
    }
}

或者我可以写的其他方式&#34;相同的代码&#34;区域只有一次,但达到了这个目标?

0 个答案:

没有答案