I'm wondering why should I use a class that inherits from the EventArgs class instead of using a custom class that will do the same job for me when passing event data?
| ||||
|
feedback
|
|
Because your event-args class will be compatible with any other function that accepts an | |||||||
|
feedback
|
|
You don't have to inherit from
The same goes for just using custom delegates but they are a lot more explicitly different. | ||||
|
feedback
|
|
Because that's what would be the standard and most idiomatic way to do this in .NET. The whole ASP.NET and WinForms event model relies on those conventions. If another developer reads your code he will more easily understand it as this is the standard. This being said you could of course use any class you like. | |||
|
feedback
|