Reputation: 24140
What is the difference between C# event handling (with all the delegates and things like that) and the events generated by double clicking on a form in designer (in Visual Studio) ?
Upvotes: 0
Views: 113
Reputation: 8508
There's no difference. The event handling and delegate are automatically declared by Visual Studio, and the code is written in the .Designer.cs
Upvotes: 5