using System;
//using System.Windows.Forms;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace ConsoleApplication6
{
class Program
{
static void Main(string[] args)
{
//using System.IO;
StreamReader file = File.OpenText(" E:\\mycsha2020\\MyText.txt");
string line;
int count = 0;
int countline = 0;
do
{
line = file.ReadLine();
if (line != null)
{
countline += 1;
string[] words = line.Split(' ');
count += words.Length;
}
} while (line != null);
file.Close();
Console.WriteLine("Count of line = {0}", countline );
Console.WriteLine("Count = {0}", count);
Console.ReadKey();
}
}
}
================================================
line1 Facebook is showing information5
line5 See actions taken by the people who manage and post Facebook is showing14
line6 purpose of a Page5