Patryk
Patryk

Reputation: 24140

What's the difference between event handling and functions generated by double-click on form in designer in C#?

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

Answers (1)

il_guru
il_guru

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

Related Questions