One of the things that I'm having difficulty understanding, trying to learn C# is Event Handling in comparison to VB .NET... I get VB .NET's way
For example, here in this event I can simply change the .CellClick event to any number of events that I want to use, .DoubleClick, etc.
CODE
Private Sub CustomersDataGridView_CellSingleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles CustomersDataGridView.CellClick
But, how do I do it in C# when it doesn't define the particular event?
CODE
private void CustomersDataGridView_CellContentClick(object sender, DataGridViewCellEventArgs e)
Please help, this has been one of my major problems trying to pick up on C#... I wrote a program in VB .NET and figured I would try to duplicate it in C# to help me learn.