vote up 1 vote down star

I am trying to create a general method for disposing an object that implements IDisposable, called DisposeObject()

To make sure I am disposing an object pointed by original reference, I am trying to pass an object by reference.

But I am getting a compilation error that says

The 'ref' argument type doesn't match parameter type

In the below (simplified) code, both _Baz and _Bar implement IDisposable.

alt text

So the questions are,

  1. Why am I getting this error?
  2. Is there a way to get around it?

[UPDATE] From provided answers so far, as long as I do not set an IDisposable argument to null, I can simply pass an object by value without using ref. I am now having another trouble whether to set disposable objects to null or not within DisposeObject method.

Here is the full source for completeness:

public class Foo : IDisposable
{
    private Bar _Bar;
    private Baz _Baz;
    private bool _IsDisposed;

    ~Foo() { Dispose(false); }

    public void Dispose(bool disposing)
    {
        if (!_IsDisposed)
        {
            if (disposing)
            {
                DisposeObject(ref _Baz);
                DisposeObject(ref _Bar);
            }
        }

        _IsDisposed = true;
    }

    private void DisposeObject(ref IDisposable obj)
    {
        try
        {
            if (obj == null) 
                return;
            obj.Dispose();
            obj = null;
        } catch (ObjectDisposedException) { /* Already Disposed... */ }
    }

    public void Dispose()
    {
        Dispose(true);
        GC.SuppressFinalize(this);
    }
}

public class Bar : IDisposable
{
    public void Dispose() {}
}

public class Baz : IDisposable
{
    public void Dispose() {}
}

[RESULT]
I removed the code that sets argument to null (obj = null;) within DisposeObject So the final code became.

    public void Dispose(bool disposing)
    {
        if (!_IsDisposed)
        {
            if (disposing)
            {
                DisposeObject(_Baz);
                DisposeObject(_Bar);
            }
        }

        _IsDisposed = true;
    }

    private void DisposeObject(IDisposable obj)
    {
        try
        {
            if (obj == null) 
                return;
            obj.Dispose();
        } catch (ObjectDisposedException) { /* Already Disposed... */ }
    }
flag

1  
I see no specific reason for using reference parameters here. Could you elaborate perhaps? – Noldorin Apr 27 at 15:55
@Noldorin: My initial implementation was to dispose an argument and set it to null. "obj == null;" That was the reason for "ref". – Sung Meister Apr 27 at 16:10
1  
obj == null is a comparison, not an assignment. obj = null is an assignment. – Adam Robinson Apr 27 at 16:13
@Adam: You are right, typo... there should be one "=". – Sung Meister Apr 27 at 16:17

4 Answers

vote up 4 vote down check

There is no need for you to pass by reference, as you're passing a reference type. You should remove the ref keyword from your method definition. Do this and you shouldn't have any issues, though I'm not sure how this is more effective or clearer than simply calling Dispose() (other than the fact that you don't have to cast it for explicit implementations and this does a null check for you).

Edit

Dance, while I hope the discussion that's surrounded this topic has been helpful to you, your original intent doesn't seem to be something that's doable. In order to pass something as ref, you can't pass a variable that has a type other than what the ref parameter expects (in other words, you can't pass a variable declared as a class or other interface that implements IDisposable if the ref parameter is IDisposable). Because ref parameters allow assignments to propagate back to the caller, you would open up the possibility of allowing incompatible types being stored in your variable.

Your best bet here is to assign null yourself if that's what you want. If you want to encapsulate the null check and ignoring exceptions in to the function that's fine, but ref will not work for you in this scenario no matter how you slice it, unfortunately.

link|flag
I wanted to delegate "NULL" and "ObjectDisposedException" to a method instead of having to write "try..catch" for each object. – Sung Meister Apr 27 at 15:56
I agree with you, Adam. I would guess he's doing it this way so that the object reference is nullified so that if DisposeObject is called again with the same reference, it'll exit early. – Michael Haren Apr 27 at 15:57
2  
Per Microsoft guidelines, calling Dispose() should never cause an ObjectDisposedException (or, more generally, repeated calls to Dispose() should never generate an error). Even so, there's no need for the ref keyword. It's only adding complexity and greater accessibility requirements. You should remove it. – Adam Robinson Apr 27 at 15:58
@Michael: I might agree with you if the object referenced were assigned to null ;) – Adam Robinson Apr 27 at 15:58
You might be right on the fact that, if I am just calling "Dispose()" on a method without setting _Bar or _Baz to null within "DisposeObject", I don't think I would need "ref". – Sung Meister Apr 27 at 15:58
show 2 more comments
vote up 4 vote down

Try this:

IDisposable d = (IDisposable)_Baz;
DisposeObject(ref d);

Edit: As Adam points out, your code doesn't require this to be ref. Objects are always passed as references.

link|flag
That doesn't work actually. You get an error that "the ref or out argument must be an assignable variable". – Noldorin Apr 27 at 15:54
1  
@dance2die, no, VARIABLES are passed by value. However, this variable holds a REFERENCE type, so the reference itself (not the content of the object) is what's being passed by value. This is similar to your other thread in that regard. The only functional difference that the ref keyword gives you is the ability to assign a value to that variable and have it reflected in the calling code. You aren't doing that, so the ref keyword is unneeded. – Adam Robinson Apr 27 at 16:02
1  
@Jon B: Objects references are passed by value. Objects are not passed by [ref] by default: you cannot assign a new object reference to an actual parameter and see that value after the call in the calling function. – Brian Ensink Apr 27 at 16:03
3  
@danc2die: Brian is absolutely correct. The reference is passed by value by default. The object itself isn't passed at all. I don't believe my article claims that they are... I certainly hope it doesn't say that. – Jon Skeet Apr 27 at 16:06
2  
@Jon B: Unless you want to change the value of the caller's variable, in which case passing the argument by reference makes perfect sense. Claiming that "objects are by ref" confuses the two issues IMO. It's much simpler and more accurate to just understand that the value of a reference type variable is a reference, not an object. At that point, it's all nice and consistent. The "objects are by ref" explanation gets really muddy when the parameter is by ref as well. – Jon Skeet Apr 27 at 16:09
show 9 more comments
vote up 2 vote down

This approach smells funny but I'll ignore that for now.

To fix your problem, you need to cast the objects you are passing with "(IDisposable)"

I concede to the will of the compiler, and Jon Skeet. You need an actual object for this:

IDisposable _BazD = (IDisposable)_Baz;
DisposeObject(ref _BazD);

I'd also add a null check in your DisposeObject() in addition to the try/catch. The "obj==null" will be a quick and easy check when compared to expensive exception catching should this get hit multiple times for the same object. Hmm...was that there a minute ago? Nevermind.

link|flag
Why is it that I would have to explictly cast the object as "IDisposable"? Can the compiler infer that I am actually passing an object that implements IDisposable? – Sung Meister Apr 27 at 15:55
Sure it could, but it doesn't. – Michael Haren Apr 27 at 15:56
@Michael: The ref keyword is what's limiting that. Were the ref keyword not there it would do exactly that. – Adam Robinson Apr 27 at 16:03
1  
That doesn't work. You'll get error CS1510: A ref or out argument must be an assignable variable. The problem is that the method could assign any IDisposable value to the variable, but the caller's variable is specifically a Bar or Baz. – Jon Skeet Apr 27 at 16:04
@Michael Haren: As Jon Skeet has pointed out, your answer generates the following error. "ref" argument is not classified as a variable – Sung Meister Apr 27 at 16:08
show 2 more comments
vote up 1 vote down

Here's an option for your example (can't verify it against a compiler right now, but you'll get the idea):

private void DisposeObject<T>(ref T obj) where T : IDisposable
{
    // same implementation
}

To call it, use

DisposeObject<Baz>(ref _Baz);
DisposeObject<Bar>(ref _Bar);

As pointed in the other comments, the compiler error you get has its own purpose (preventing you to assign some other type of IDisposable inside your method, leading to an inconsistent state).

link|flag
That's nifty. It compiles but since I decided not to set an argument to null, I have already selected an answer. I think I will be able to use above code for future uses. Thanks Dan C. – Sung Meister Apr 27 at 16:46

Your Answer

Get an OpenID
or

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