Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it normal practice to use classes inherited from EventArgs as parameters in methods or i should make Interface. For example:

public class EvArgsTest : EventArgs
{
  public string Test { get { return "test"; } }
}

public foo()
{
   zoo(new EvArgsTest());
}

public zoo(EvArgsTest tr)
{
   Console.WriteLine(EvArgsTest.Test());
}

Is it good style? (Sure i in case if i am already using EvArgsTest for events)

share|improve this question
2  
No this not good style. EventArgs are what the name implies; arguments for events. Why would you want to use it this way when you can implement classes with the same functionality without inheriting from EventArgs just as easily? – John Willemse Feb 13 at 13:33
I have implemented and i am using it for events now... So i think: to make new class or use exesting – Brans Feb 13 at 13:35
I'd strongly advise to make a new class. – John Willemse Feb 13 at 13:38

1 Answer

This is really a bad practice!

EventArgs are meant to be use with events.

From MSDN

EventArgs class represents the base class for classes that contain event data, and provides a value to use for events that do not include event data.

I don't understand why you need to pass an object that inherit EventArgs to a method..

Create your own class or add more argments to methods

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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