Adding classes to existing assembly ?

  • Thread starter Thread starter Omikron
  • Start date Start date
O

Omikron

Hi,
I have a class compiled dynamically into an assembly using
VBCodeProvider (perhaps I will need to change this class into
something different in the future). My question is..is it possible now
to get this assembly and add some other compiled classes in ? Or there
is no other way than decompilling the dll and compile it once again ?

Thanks in advance
Bartek
 
Omikron said:
I have a class compiled dynamically into an assembly using
VBCodeProvider (perhaps I will need to change this class into
something different in the future). My question is..is it possible now
to get this assembly and add some other compiled classes in ? Or there
is no other way than decompilling the dll and compile it once again ?

Unless you want to start messing around with ILMerge, then
recompiling with the new stuff added is the way to go.

Arne
 
Back
Top