public MainPage()
{
InitializeComponent();
StreamReader read = new StreamReader("T1.txt");
string rr = read.ReadLine();
textBlock1.Text = rr;
}
}
when it start debuging it's stop here: string rr = read.ReadLine();
it's give me an method ccess exception how can i solve this problem??