Q:

C# program to read all lines of a text file

0

Give a text file and we have to read it’s all lines using C# program.

File.ReadAllLines()

This is a method of "File class, which returns all lines (array of strings) from a text file.

Syntax:

String[] ReadAllLines(string filename);

Parameter(s):

  1. filename - name of the file.

Return value:

  1. This method return array of string, in which every element of array contains a line.
  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()
        {
            int i = 0;
            string[] line;

            line = File.ReadAllLines("ABC.TXT");

            for (i = 0; i < line.Length; i++)
            {
                Console.WriteLine(line[i]);
            }
            
        }
    }
}

Output

This is Line 1.
This is Line 2.
This is Line 3.
This is Line 4.
This is Line 5.

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 multiple (all) lines into a te... >>
<< C# program to move file from one location to anoth...