for the past >8 years i was doing VB / VB.Net work
now I’m jumping into C# world, so far it’s very easy
only thing that I find difficult is the fact that the signature of every events on object are not automatically created for me.
I’m used to select the object name in the left dropdown in the code view and then the event that I want in the right dropdown.
is there something similar to that in C#? if yes where can i find it, I really wish I don’t have to write them by hand…
Yes there is:
Type the event name followed by += followed by a space and then hit tab twice.
Example:
this will create the event handler method stub for you.