Questions tagged [binaryreader]

In .net is a class used to read binary values. In general, it is a class or a program to read and manipulate binary data.

244 questions
-2
votes
2 answers

Receive byte array from server to client? BinaryReader / BinaryWriter error?

Hi i'm a newbie in c# and doing server and client for sharing text file via tcp/ip socket connection. I used the BinaryReader / BinaryWriter to upload from client to server but stucking from server to client: From client to server: Socket clientSock…
-3
votes
1 answer

Any meant where to locate the using?

WiresharkFile abstract class: public abstract class WiresharkFile { private PlayBehavior _playBehavior; public void Transmit() { _playBehavior.Transmit(); } public virtual void Dispose() { // Implemented…
david hol
  • 1,272
  • 7
  • 22
  • 44
-3
votes
1 answer

How to display memory on a C# application

I'm trying to make an application that reads memory and displays it. The source of the data is coming from a byte[] array and I've tried converting it into text, but did not work. I also tried to use BinaryReader, but it seems to be only for reading…
john Era
  • 7
  • 3
-3
votes
2 answers

C# Iterate through binary file and build a text file with found bytes

I try to be more specific. I have a binary file which has some portions of text inside. I want to search for some byte sequence in the binary file, if the sequences are found take the byte arrays and build a text file with them. So the step has to…
1 2 3
16
17