Computer >> Máy Tính >  >> Lập trình >> C#

Làm thế nào để sử dụng lớp C # BinaryWriter?

Nếu bạn muốn ghi thông tin nhị phân vào luồng, thì hãy sử dụng lớp BinaryWriter trong C #. Bạn có thể tìm thấy nó trong không gian tên System.IO.

Sau đây là việc triển khai lớp BinaryWriter -

static void WriteMe() {
   using (BinaryWriter w = new BinaryWriter(File.Open("C:\\abc.txt", FileMode.Create))) {
      w.Write(37.8);
      w.Write("test”);
   }
}

static void ReadMe() {
   using (BinaryReader r = new BinaryReader(File.Open("C:\\abc.txt", FileMode.Open))) {
      Console.WriteLine("Value : " + r.ReadDouble());
      Console.WriteLine("Value : " + r.ReadString());
   }
}

Ở trên, lớp TheBinaryWriter mở một tệp và ghi nội dung vào đó -

static void WriteMe() {
   using (BinaryWriter w = new BinaryWriter(File.Open("C:\\abc.txt", FileMode.Create))) {

      w.Write(37.8);
      w.Write("test");
   }
}