Posts by LeoSimas • 25 points
2 posts
-
-2
votes3
answers853
viewsA: How to replace hexadecimal value in a binary file?
Try it like this: Hex p/ Decimal: Convert.ToInt64(hexValue, 16); Decimal p/ Hexadecimal: string.format("{0:x}", decValue);
-
2
votes3
answers476
viewsA: Unmounting a USB Pen-Drive via code
Once I looked at this link, I was trying to do the same solution and I had found these models, but I no longer needed them, I used file transmission via Dropbox, so I abandoned the project. who…