Q:

C# program to write multiple (all) lines into a text file

0

Given multiple lines and we have to write all lines into a text file.

File.WriteAllLines()

This is a method of "File class, which is used to write all lines in a text file.

Syntax:

void WriteAllLines(string filename);

Parameter(s):

  1. filename - name of the file.
  2.  

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program

using System;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main()
        {
         
            string[] line={
                            "Sample Line 1",
                            "Sample Line 2",
                            "Sample Line 3",
                            "Sample Line 4",
                            "Sample Line 5"
                          };

            File.WriteAllLines("sample.txt", line);

            Console.WriteLine("Data written successfully");
        }
    }
}

Output

Data written successfully

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

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# file handling (File class) solved programs/examples

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to write byte buffer into a file... >>
<< C# program to read all lines of a text file...