Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

C# program to Implement BinaryReader

If you are a c# beginner or want to start learning the c# programming language, then this Program will help you to understand the basics of c# programming. In this program, we are going to share C# program to Implement BinaryReader.

  • Collection of 100+ C# problems with solutions.

Copy the below c# program and execute it in your Microsoft Visual Studio IDE (Integrated Development Environment ).

using System;
using System.IO;

class ConsoleApplication
{
    const string fileName = "program.dat";
    static void Main()
    {
        Write();
        Console.WriteLine("Using Binary Writer Class the Contents are 
        Written ");
        Display();
    }
    public static void Write()
    {
        using (BinaryWriter writer = new BinaryWriter(File.Open(fileName, 
        FileMode.Create)))
        {
            writer.Write(1.250F);
            writer.Write(@"C:\Temp");
        }
    }
    public static void Display()
    {
        float aspectRatio;
        string tempDirectory;
        if (File.Exists(fileName))
        {
            using (BinaryReader reader = new BinaryReader(File.Open
            (fileName, FileMode.Open)))
            {
                aspectRatio = reader.ReadSingle();
                tempDirectory = reader.ReadString();
            }
            Console.WriteLine("Aspect Ratio Set to : " + aspectRatio);
            Console.WriteLine("Temp Directory is : " + tempDirectory);
            Console.Read();
        }
    }
}

The post C# program to Implement Binaryreader appeared first on FreeWebMentor.



This post first appeared on Programming Blog Focused On Web Technologies, please read the originial post: here

Share the post

C# program to Implement BinaryReader

×

Subscribe to Programming Blog Focused On Web Technologies

Get updates delivered right to your inbox!

Thank you for your subscription

×