Consider this function signature:
Private Void TextBox1_TextChange(Object Sender, EventArgs e)
As far as my knowledge goes I understand it as below.
Private is a modifier
Void is the return type
TextBox1_TextChange
is an event name.
Maybe I am wrong in the above case as I just started practicing in C#, Visual Studio 2005.
What is the definition/meaning of (Object Sender, EventArgs e)
and how does it work?