how to change or modify embedded string resource in an assembly at runtime.

  • Thread starter Thread starter raghu sunkara
  • Start date Start date
R

raghu sunkara

hi,
how to change or modify embedded string resource in an assembly at runtime.
please help me.


Thanks,
Raghu
 
raghu sunkara said:
hi,
how to change or modify embedded string resource in an assembly at
runtime.
please help me.

The format of .NET assemblies is well documented. There's an article on
codeproject for asmex that works with all the resource tables of an
assembly.

But you won't be able to change these for an assembly that's running, since
executing code is locked read-only by the OS. Instead you need to add a
layer of abstraction, like a static property.
 
raghu sunkara said:
hi,
how to change or modify embedded string resource in an assembly at
runtime.
please help me.

The format of .NET assemblies is well documented. There's an article on
codeproject for asmex that works with all the resource tables of an
assembly.

But you won't be able to change these for an assembly that's running, since
executing code is locked read-only by the OS. Instead you need to add a
layer of abstraction, like a static property.
 
Back
Top