tombok1/MeccsDoga/Program.cs

25 lines
559 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MeccsDoga
{
class Program
{
static void Main(string[] args)
{
//Beolvasás a merkozesek.tx fájlból 1. mód
StreamReader sr = new StreamReader(@"c:\git\merkozesek.txt");
//egy sor beolvasása
string elsosor = sr.ReadLine();
Console.WriteLine($"Az állomány első sora: {elsosor}");
sr.Close();
}
}
}