×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

C# - How to Write Byte Buffer to a File?

Learn, how to write byte buffer in a text file using C# program?
Submitted by IncludeHelp, on November 08, 2017 [Last updated : March 26, 2023]

Given byte buffer and we have to write all bytes in a file using C# program.

To write byte buffer to a file in C#, we use File.WriteAllBytes() method.

File.WriteAllBytes()

This is a method of "File" class, it writes all bytes (byte buffer) in a file.

Syntax

void WriteAllBytes(string filename);

Parameter(s)

  1. filename - name of the file.

C# program to write byte buffer to a file

using System;
using System.IO;

namespace ConsoleApplication1 {
  class Program {
    static void Main() {
      byte[] byteBuff = {1, 2, 3, 4, 5};

      File.WriteAllBytes("Sample.txt", byteBuff);

      Console.WriteLine("Data Written Successfully");
    }
  }
}

Output

Data written successfully

Explanation

In the above program, we need to remember, when we use "File" class, System.IO namespace must be included in the program.

C# File Handling Programs »

Advertisement
Advertisement

Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.