Can I modify some XML files inside a DLL?

  • Thread starter Thread starter James
  • Start date Start date
J

James

I have a dll file which has some embedded XML files inside it.
Now I need to add a field to this xml file, but I dont know how to go
about it.

I have tried to decompile the whole thing and recompile but it
produces lots of errors.

Is there another way? Any sort of xml resource editor?
 
James said:
I have a dll file which has some embedded XML files inside it.
Now I need to add a field to this xml file, but I dont know how to go
about it.

I have tried to decompile the whole thing and recompile but it
produces lots of errors.

Is there another way? Any sort of xml resource editor?


when your programming is running, of course it can not be modified so
you can't do this.
If your xml file need modifying at run-time, why don't you put it in
disk as a normal file?
 
Back
Top