blah blah blah is here! blah blah » Close

1
votes
1 answers

Binary Files

Dear All, Anybody know what is binary files? And How to write them in C#. I have been using streamreader and streamwriter to work with a text file but I have no idea of the binary file. Kindest Regards, E

1
votes
1 answers

XML Formatted To Binary

eeboy
499

I have data which I store in XML files and manipulate in my program. This data is destined for EEPROM/FLASH of a hardware device and needs to be formatted into a binary table of sorts before it can be loaded into the device. This table is o ...

0
votes
1 answers

Counting the Occurrence of Same Bytes in a Binary File

say I have the below binary file name test.bin. I want to count the occurrence of the same bytes [44 04 85 44 10 10 01 01 10 00 08] in that file. how do I do that? The answer should be 3. Some sample could be be greatly appreciated. thanks. ...

0
votes
2 answers

Load image from binary data from sql

Hi, I have binary data in my sql database that is of type image. Now I want to load this binary data to an image, have you any idea how I could do this? Thanks.

2
votes
1 answers

Overwrite part of existing Binary File

if I have a existing binary file of 20 bytes, and I want to replace (over-write) portion of that file, say 4 bytes, from index 10 to index 13, how could I do that? I understand that FileMode.Append could be used, but it always append at ...

Feedback