I am comfortable with Vb.Net events and handlers. Can anybody will help me with how to create event handlers in c#, and raise events.
public MyClass() { InitializeComponent(); textBox1.LostFocus += new EventHandler(testBox1_LostFocus); } void testBox1_LostFocus(object sender, EventArgs e) { // do stuff }