vote up 0 vote down star

So I have a custom event like this:

    Work w = new worker()
    w.newStatus += new worker.status(addStatus);
    w.doWork();

    void addStatus(string status)
    {
    	MessageBox.Show(status);
    }

and this:

    public event status newStatus;
    public delegate void status(string status);

    public void doWork()
    {
        newStatus("Work Done");    
    }

If I were to make "addStatus" an overload, what would I have to do to pass overload parameters without creating a second delegate/event?

flag

I need more info. When you say "make addStatus an overload", what do you mean? You want an overload that takes a different set of parameters? – Charlie Flowers Nov 8 at 4:34
@Charlie: I believe that is what the OP wants. E.g. addStatus(string status) and addStatus(string status, bool flag) – o.k.w Nov 8 at 4:43
@Charlie What o.k.w said is what I meant – Lienau Nov 8 at 4:46

2 Answers

vote up 2 vote down check

Make your status delegate generic like this:

public event Status<String> NewStatus;
public event Status<Int32> OtherStatus;
public delegate void Status<T>(T status);

public void DoWork()
{
    NewStatus("Work Done");
    OtherStatus(42);
}

Then you can create strongly typed events that use the same delegate.

Edit: Here is a complete example showing this in action:

using System;

class Example
{
    static void Main()
    {
        Work w = new Work();
        w.NewStatus += addStatus;
        w.OtherStatus += addStatus;
        w.DoWork();
    }    
    static void addStatus(String status)
    {
        Console.WriteLine(status);
    }
    static void addStatus(Int32 status)
    {
        Console.WriteLine(status);
    }
}

class Work
{
    public event Status<String> NewStatus;
    public event Status<Int32> OtherStatus;
    public delegate void Status<T>(T status);

    public void DoWork()
    {
        NewStatus("Work Done");
        OtherStatus(42);
    }
}
link|flag
I was initially confused why you were suggesting he use generics. Then I reread the OP's question carefully and saw that "what would I have to make a second custom event" can be understood two ways. You interpreted it as "what would I have to do to avoid making a second delegate " and gave a great answer to that question. I suggest you extend your answer to make it clear that you would use a generic delegate if you didn't want two separate delegate types, but that you could just as easily use two delegates and not use generics. (So others won't be confused as I was at first) – Ray Burns Nov 8 at 4:57
That's the same thing I was doing, I just wanted to know if there was a way to pass overload parameters over an event. – Lienau Nov 8 at 4:58
If both events have the same number of parameters you can share the delegate by making it generic. If the events need to pass different numbers of parameters you will need to use separate delegates. – Andrew Hare Nov 8 at 5:27
Alright, Thanks Andrew. – Lienau Nov 8 at 5:31
vote up 0 vote down
    void addStatus(string status, int something)
or
    void addStatus(int status)
or
    void addStatus()
should all work.
link|flag

Your Answer

Get an OpenID
or

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