以下のコードスニペットを使用しています。しかし、コードベースのプロパティはnullなので、どこからパスを取得できますか?
public partial class App : Application
{
public App()z
{
AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(CurrentDomain_AssemblyResolve);
}
private Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
{
// how to return the assembly ?
// how to get the path of referred/missing assembly ?
return Assembly;
}
}