Assembly.GetExecutingAssembly

  • Thread starter Thread starter Bruce
  • Start date Start date
B

Bruce

Assembly.GetExecutingAssembly returns a Reflection.Assembly
Is it possible to save that to disk as a dll or exe, so I can load it
later?
 
Bruce,
Assembly.GetExecutingAssembly returns a Reflection.Assembly
Is it possible to save that to disk as a dll or exe, so I can load it
later?

No, you can't take an Assembly object and save it to disk as an
executable.

But isn't it already a dll or exe on disk, or is this a dynamically
created assemlby or one loaded from memory?


Mattias
 
Bruce said:
Assembly.GetExecutingAssembly returns a Reflection.Assembly
Is it possible to save that to disk as a dll or exe, so I can load it
later?

I also answered in your multipost in .framework.

-- Barry
 
Back
Top