I was using this:
AppDomain.CurrentDomain.GetAssemblies().SelectMany<Assembly,string>( a => a.GetModules().Select<Module,string>( m => m.FullyQualifiedName )).ToArray()
to get the names of all loaded assemblies.
It comes from code that gets a friendly C# name for a type:
return (Type)(new CSharpCodeProvider().CompileAssemblyFromSource( new CompilerParameters( AppDomain.CurrentDomain.GetAssemblies().Select<Assembly,string>( a => a.CodeBase).ToArray(), null, false) {GenerateExecutable = false, GenerateInMemory = true, TreatWarningsAsErrors = false, CompilerOptions = "/optimize"}, "public static class C{public static System.Type M(){return typeof(" + friendlyName + ");}}").CompiledAssembly.GetExportedTypes()[0].GetMethod("M").Invoke( null, System.Reflection.BindingFlags.Static, null, null, null ));
But the compiler is producing an error like so: Could not load file or assembly 'file:///C:\Users{username}\AppData\Local\Temp\qk3bjlf3.dll' or one of its dependencies. The system cannot find the file specified.
Problem is... that file is not actually referenced anywhere. It's not returned by AppDomain.CurrentDomain.GetAssemblies() nor any of the submodules, and the name changes every time I click continue in the debugger.
Actually i do like this:
Just in case (since i use this a lot) i created a small library to accomply this kind of things
The code and documentation are here: Kendar Expression Builder While the nuget package is here: Nuget Sharp Template