Is there something like:
AppDomain.CurrentDomain.GetAssemblyByName("TheAssemblyName")
so instead of looping through AppDomain.CurrentDomain.GetAssemblies()
, we could just get the specific assembly directly.
Have you tried looking at Assembly.Load(...)?