I want to edit a hex location (for eg.0x90F10-0x90F15) in a DLL file.

Is there any library or APIs by which I can do it in .NET?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 5 down vote accepted
  1. Call File.OpenWrite to get a FileStream for your file

  2. Set Stream.Position to jump to the location you want to edit

  3. Call Stream.Write to overwrite bytes in the file.

link|improve this answer
Are you sure that Stream.Write is going to work after you've called File.OpenRead? I suspect you'll need instead to call the FileStream constructor and give it a FileAccess of ReadWrite. – Jim Mischel Sep 19 '11 at 18:16
@Jim: You're right; I'm not sure why I wrote that. – SLaks Sep 19 '11 at 18:27
feedback

Since you don't provide much detail or source only a general pointer:

Try System.IO.File - you can read and write any byte/byte array...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.