Re: How to catch System.IO.FileLoadException when starting application
- From: "ClayB" <clayb@xxxxxxxxxxxxxx>
- Date: 6 Mar 2007 03:44:12 -0800
Try subscribing to the static event AssemblyResolve to see if that
will allow you to catch this exception.
AppDomain.CurrentDomain.AssemblyResolve += new
ResolveEventHandler(AssemblyResolver);
public static System.Reflection.Assembly AssemblyResolver(object
sender, ResolveEventArgs e)
{
// return the proper assembly
}
========================
Clay Burch
Syncfusion, Inc.
.
- References:
- Prev by Date: How to catch System.IO.FileLoadException when starting application
- Next by Date: story
- Previous by thread: How to catch System.IO.FileLoadException when starting application
- Next by thread: Re: How to catch System.IO.FileLoadException when starting application
- Index(es):