Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having List object. How I can dispose the list ?

For example,

List<User> usersCollection =new List<User>();

User user1 = new User();
User user2 = new User()

userCollection.Add(user1);
userCollection.Add(user2);

If I set userCollection = null; what will happen?

foreach(User user in userCollection)
{
    user = null;
}

Which one is best?

share|improve this question
4  
Your code doesn't contain any dispose operations. – CodesInChaos Jul 6 '11 at 11:32
1  
Dispose is for releasing unmanaged resources. If a list does not have any references to it, it will be released by the garbabe collector when appropriate. – Paolo Moretti Jul 6 '11 at 11:34
@Paolo and prompt cleanup (of some implementation-specific kind) of some managed resources; but yes, unmanaged is more common – Marc Gravell Jul 6 '11 at 11:35

8 Answers

up vote 7 down vote accepted

Best idea is to leave it to the garbage collector. Your foreach will do nothing since only the reference will be set to null not the element in the list. Setting the list to null could in fact cause garbage collection to occur later than it could have (see this post C#: should object variables be assigned to null?).

share|improve this answer

Firstly, you cannot "dispose" a list since it isn't IDisposable, and you can't force it to be collected since that isn't how C# works. Typically you would do nothing here. So when might we need to do anything?

  • If it is a method variable, and your method is going to exit in a moment, don't do anything: let the GC worry about it at some point after the method has existed.
  • If it is a field (instance variable), and the object is going to go out of scope in a moment, don't do anything: let the GC worry about it at some point after the instance is unreachable.

The only time you need to anything is if it is a field (or captured variable / iterator block variable / etc) and the instance (/delegate/iterator) is going to live a long while longer - then perhaps set the list field to null. Note, however, that if any other code still has a reference to the list then everything will still be reachable.

share|improve this answer

Why do you want to dispose the list? The GC will do it for you if there is no references to it anymore.

Garbage Collection: msdn.microsoft.com/en-us/library/0xy59wtx.aspx

share|improve this answer

You haven't provided enough context. Scope is critical here.

I think the GC should be smart enough to deal with the memory allocated for users and the collection without having to set anything to null.

If the collection removes users that aren't necessary from the collection, and no other objects refer to them, they'll be GC'd without you having to provide any hints.

The GC will not clean up an object as long as there's a live reference to it. Eliminate all the references and it can do its job.

share|improve this answer

Best way is

userCollection= null;

Than GC will take care of rest.

share|improve this answer
-1 yyyyyyyy????????? is anything missing – Pranay Rana Jul 6 '11 at 11:35
1  
I didn't vote, but certainly can explain. When is this "Bast" or even needed? Why would you clear a list before throwing away the reference? And why set the reference to null when it is getting out of scope? – Kobi Jul 6 '11 at 11:36
Sure. Don't need to loop yourself. – Zhen Jul 6 '11 at 11:36
@Kobi and @Zhen - thanks its removed now – Pranay Rana Jul 6 '11 at 11:40

As everyone has mentioned leave to GC, its the best option and don't force the GC. Setting the variable to null will mark the variable for the GC.

if your after more info: Best Practice for Forcing Garbage Collection in C#

share|improve this answer
According to the .NET team, setting a variable to null can actually result in it living longer than is necessary. The runtime is very intelligent, and doesn't need you to set a variable to null for it to determine if it can cleanup that memory. The current implementation of the GC actually looks for references to the variable - once there is no further code which touches that variable, the GC will reclaim that memory when there is memory pressue or spare cycles. Setting it to null at the end of a method can prolong its life, because you're creating an additional usage of the variable. – RyanR Jul 6 '11 at 22:44

One other idea is to use brackets that include the scope of your variable that you wish to keep.

for example.

void Function()
{
    ... some code here ....

    {   // inside this bracket the usersCollection is alive
        // at the end of the bracet the garbage collector can take care of it

        List<User> usersCollection =new List<User>();

        User user1 = new User();
        User user2 = new User()

        userCollection.Add(user1);
        userCollection.Add(user2);

        foreach(User user in userCollection)
        {

        }
    }

    ... other code here ....
}
share|improve this answer

Another idea for this post... If you were wanting to ensure that all members of a collection are properly disposed, you could use the following extension method:

public static void DisposeAll(this IEnumerable set) {
    foreach (Object obj in set) {
        IDisposable disp = obj as IDisposable;
        if (disp != null) { disp.Dispose(); }
    }
}

This looks through the collection for any member that implements IDisposableand disposing of it. From your executing code, you could clean up the list like this:

usersCollection.DisposeAll();
usersCollection.Clear();

This will ensure that all members get the chance to release resources and the resulting list is empty.

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.