You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
592 B
C#

/*
* C# Program to Illustrate Binary Writer
*/
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 ");
}
public static void Write()
{
using (BinaryWriter writer = new BinaryWriter(File.Open(fileName, FileMode.Create)))
{
writer.Write(1.250F);
writer.Write(@"c:\Temp");
}
}
}
/*
Using Binary Writer Class the Contents are Written