工程2、即實踐方法工程BLLTest,內容如下:(在此工程中引用ITest.dll) using ITest; namespace BLLTest { public class BLLTest:Interface1 { public string ReturnString() { return "OK"; } } }
工程3、即用戶界面工程UITest,內容如下:(在此工程中引用了ITest.dll) using ITest;
namespace WindowsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); }