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?

link|improve this question

60% accept rate
feedback

3 Answers

up vote 3 down vote accepted

Because your event-args class will be compatible with any other function that accepts an EventArgs object.

link|improve this answer
Thanks dude, now I understand that. – Yair Nevet Jul 25 '11 at 13:51
so "(object sender, EventArgs e)" is just a convention, right? – Yair Nevet Jul 25 '11 at 14:07
@Yair: yes, it's convention. – Fredrik Mörk Jul 26 '11 at 7:11
feedback

You don't have to inherit from EventArgs, but it allows people using your classes to use and handle generic *Handler(object sender, EventArgs e) declarations. If you don't inherit from EventArgs, then they have to use explicitly typed

*Handler(object sender, YairsFakeEventArgs e)

The same goes for just using custom delegates but they are a lot more explicitly different.

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.