I noticed that Assembly.LoadFrom has the following overload
public static Assembly Load(
byte[] rawAssembly
)
How to save an assembly as an array of bytes to create it like this?
Context: I want to write a test harness that will provide backward compatibility of the service. I want to load the finished versions of the client into my wiring and call the service from different versions. I think storing old versions as a byte [] would allow me to freeze them.
Aidan source
share