using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Drawing;
namespace ideal
{
public class Lib
{
public string DosyaOku(string DosyaAd)
{
if(System.IO.File.Exists(DosyaAd))
return System.IO.File.ReadAllText(DosyaAd);
else
return "dosya bulunamadı";
}
}
}
string str = Lib.DosyaOku("c:\\ideal\\a.txt") ;
Sistem.Mesaj(str);
şeklinde yaptığımızda verileri alabildik. teşekkür edeirm.