vote up 1 vote down star

I have a method with a ref control type parameter which I want to call by passing a ref button type parameter.

Well the compiler doesn't accept this, I have to change the ref control type to ref button type.

Why ?

flag

64% accept rate
1  
Please add code sample. – Kyle Rozendo Sep 15 at 18:48
3  
I'm curious if the ref is even necessary considering you're passing an object. – Austin Salonen Sep 15 at 18:55
Hmm, programmernovice. Might want to consider a new handle. You still gonna want that handle in 5 years? – jcollum Sep 15 at 22:13

4 Answers

vote up 6 vote down check

You can get around some of the typing limitations with generics.

void Test<T>(ref T control)
   where T: Control
{
}

Now you can call:

Button b = new Button() 
Test(b);

You can pass a reference of any type into it that derives from control.

Real life scenario:

 protected static void BindCollection<T>(
        T list
        , ref T localVar
        , ref ListChangedEventHandler eh // the event handler
        , ListChangedEventHandler d) //the method to bind the event handler if null
        where T : class, IBindingList
    {
        if (eh == null)
            eh = new ListChangedEventHandler(d);

        if (list != null && list != localVar)
        {
            if (localVar != null)
                localVar.ListChanged -= eh;

            localVar = list;

            list.ListChanged += eh;
        }
        else if (localVar != null && list == null)
        {
            localVar.ListChanged -= eh;
            localVar = list;
        }
    }

public override BindingList<ofWhatever> Children
    {
        get{//..}
        set
        {
           //woot! a one line complex setter 
           BindCollection(value, ref this._Children, ref this.ehchildrenChanged, this.childrenChanged);
        }
    }
link|flag
+1 Really clever idea. – Daniel Brückner Sep 15 at 21:53
Hello thanks for the solution whereas I just asked why so it's great, will choose your answer as best. – programmernovice Sep 15 at 22:12
Yeah, sorry about that... got ahead of myself. – Brian Rudolph Sep 15 at 22:14
While I really like the generic-ref-trick, I find your usage not so good practice. One should usually avoid (public) setters for list-type properties. In what scenarios do you use the code? – Daniel Brückner Sep 15 at 22:25
i would generally agree, and in most cases it is actually private and i call the method from the lazy loaded getter. I have a lot of objects who have child collections that are lazy loaded, and this model(while i truncated it for viewing on SO) ensures that i get consistent binding without copying and pasting code. – Brian Rudolph Sep 15 at 22:38
vote up 1 vote down

According to C# spec:

When a formal parameter is a reference parameter, the corresponding argument in a method invocation must consist of the keyword ref followed by a variable-reference (§5.3.3) of the same type as the formal parameter.

Otherwise it is possible that a value of inappropriate type (to your button filed reference to checkbox instance) will be assigned to a variable you pass.

link|flag
vote up 19 vote down

Because this will cause many problems ...

public void DoDarkMagic(ref Control control)
{
    control = new TextBox();
}

public void Main()
{
    Button button = new Button();

    DoDarkMagic(ref button);

    // Now your button magically became a text box ...
}
link|flag
+1 Excellent presentation. – 280Z28 Sep 15 at 21:46
Amazing thank you :) – programmernovice Sep 15 at 22:14
I think a little more explanation would help him out. I suspect that he's not clear on some stuff, his example has code smell. – jcollum Sep 15 at 22:14
vote up 5 vote down

From the C# specification:

When a formal parameter is a reference parameter, the corresponding argument in a method invocation must consist of the keyword ref followed by a variable-reference (§12.3.3) of the same type as the formal parameter

link|flag

Your Answer

Get an OpenID
or

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