When I made a LostFocus-event for a TextBox, a NotImplementedException()
is added. How do I catch this exception? My code is:
void marks_LostFocus(object sender, EventArgs e)
{
throw new NotImplementedException();
}
Edited
I m sorry to be unclear the question that i wanted to ask is that when i create an event of lostFocus the VS automatically adds this line. Academically speaking. where can i catch this exception and what is use of it. why does the VS automatically adds this line