我可以使用一个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;区域只有一次,但达到了这个目标?