Is there something like:
AppDomain.CurrentDomain.GetAssemblyByName(\"TheAssemblyName\")
so instead of looping through AppDomain.Curre
AppDomain.Curre
For those who just need to access the assembly's metadata (version, etc.) check out Assembly.ReflectionOnlyLoad(name), which is able to load only the metadata, possibly saving on memory and IO.