Kod:
using System;
using System.IO;
class Program
{
static void Main()
{
// Okunacak metin dosyasının yolu
string filePath = "C:\\Path\\To\\Your\\File.txt";
try
{
// StreamReader kullanarak dosyayı açma
using (StreamReader sr = new StreamReader(filePath))
{
string line;
// Dosyanın sonuna kadar satır satır okuma
while ((line = sr.ReadLine()) != null)
{
Console.WriteLine(line);
}
}
}
catch (Exception ex)
{
Console.WriteLine("Hata: " + ex.Message);
}
}
}
Not: Belirtilen dosya yolunu, kendi dosya yolunuzla değiştirmeyi unutmayın. Ayrıca, dosyanın bulunduğu yolu kontrol ederek kodunuzu ayarlamak önemlidir.