類別庫部分
namespace library1
{
public class Class1
{
public string getx()
{
return "123";
}
}
}
winform部分
using library1;
namespace testdll1
{
public partial class Form1 : Form
{
library1.Class1 cc=new library1.Class1();
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show(cc.getx());
}
}
}
我有在testdll1專案加入參考.重建方案也沒錯誤.但是就一直跳出這個.
System.IO.FileNotFoundException: '無法載入檔案或組件 'System.Runtime, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' 或其相依性的其中之一。 系統找不到指定的檔案。'
如果兩專案.netframework版本相符,檢查windows form專案的bin\debug目錄是否有library1.dll。