Is it possible to load the Assembly into Byte Array only partially, in the sense that: either: only specific class is loaded (e.g of given name and which implements given interface) or: whole assembly is loaded except specific class
In my solution implementation of the whole Assembly loaded into ByteArray during App Runtime looks like this:
byte[] assemblyBytes = File.ReadAllBytes(assemblyFilename);
Assembly LoadedAssembly = Assembly.Load(assemblyBytes);
Thank you in advance for your help,