C# BinaryReader and BinaryWriter2 min read

BinaryReader and BinaryWriter are the classes that are used to read and write into a binary file. These are just like C# StreamReader and StreamWriter except here we read and write to a binary file.

C# BinaryReader class

This class in C# is used to read binary information from a file. This class is present in System.IO namespace.

The BinaryReader contains the following commonly used methods.

MethodsDescription
Close()This method closes the BinaryReader object and the resources associated with it.
Read()It reads the character from the stream and increments the position of the stream.
ReadBoolean()It is used to read the boolean value and increases the stream by one byte.
ReadString()It is used to read a string from the current stream. The string is prefixed with the length, encoded as an integer seven bits at a time.

C# BinaryWriter Class

The BinaryWriter class is used to write binary information into a stream. This class is present in System.IO namespace.

The BinaryWriter contains the following commonly used methods.

MethodsDescription
Close()This method closes the BinaryReader object and the resources associated with it.
Write(type value)It is used to write on the current stream. we place the type and value according to the need.
Write(bool value) ,
Write(byte value) ,
Write(char ch),
Write(double value) ,
Write(int value) ,
Write(string value)
Flush()It is used to clear all buffers on the current writer and causes any buffered data to be written to the underlying device.
Seek(int offset, SeekOrigin origin)It is used to set a position on a current stream in a file.

Example: C# program for BinaryReader and BinaryWriter classes

Output: After the execution of the above program a new file sample.dat file will be created and the information written on it will be displayed on the screen.

String : This is Simple2code.com.
Double : 23.123
Boolean : True
Integer : 45


MORE

Java Program to find the sum of the Largest Forward Diagonal

in this tutorial, we will write a java program to find the sum of the Largest Forward Diagonal in an Arraylist (matrix). Java Program to …

C Program to search an element in an array using Pointers

A separate function( search_function()) will be created where the array pointer will be declared and the searched element along with the size of an array …

C Program to find the sum of the digits of a number using recursion function

This C program calculates the sum of digits of a given number using recursion. Here’s a concise explanation: Function Definition: sumDigits(int n) This function calculates …

C program to find factorial of a numberĀ using Ternary operator with Recursion

Recursion refers to the function calling itself directly or in a cycle. Before we begin, you should have the knowledge of following in C Programming: …

C Program to Add Two Numbers Using Call by Reference

The program takes the two numbers from the user and passes the reference to the function where the sum is calculated. You may go through …

Find the output ab, cd, ef, g for the input a,b,c,d,e,f,g in Javascript and Python

In this tutorial, we will write a program to find a pairs of elements from an array such that for the input [a,b,c,d,e,f,g] we will …