08/08/11 22:59:52
>>660
C#は1.1です。
try
{
Assembly a;
a = Assembly.LoadFile("C:\App\ModA.dll");
foreach(Type type in a.GetTypes())
{
if(type == typeof(インターフェース))
{
return true;
}
}
}
catch(Exception e)
{
MessageBox.Show("エラー発生");
}
ソースはこんな感じです。スタックトレースってのはよく分かりません。
ごめんなさい。
>>664
Base.dllを先に読み込めばいいんですね。
明日試してみます。