hi
hi,
i have a .hex file and i have to read it and convert and sasve it in decimal format.
any ideas plzzz
plastic 0 Newbie Poster
Recommended Answers
Jump to PostWath do you mean by a hex file?
A binary file or a text file with hexadecimal characters?
Jump to PostPerhaps it is more something like this you want:
using System; using System.IO; using System.Windows.Forms; namespace HexDump { class Program //simulate hexdump utility { [STAThread] static void Main(string[] args) { OpenFileDialog dlg = new OpenFileDialog(); if (dlg.ShowDialog() == DialogResult.OK) { DumpHexFile(dlg.FileName); } Console.ReadKey(); } static void DumpHexFile(string …
All 8 Replies
ddanbe 2,724 Professional Procrastinator Featured Poster
plastic 0 Newbie Poster
donaldw 33 Posting Whiz in Training
plastic 0 Newbie Poster
donaldw 33 Posting Whiz in Training
ddanbe 2,724 Professional Procrastinator Featured Poster
plastic 0 Newbie Poster
ddanbe 2,724 Professional Procrastinator Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.