vote up 6 vote down star
3

What I'd like to avoid:

ManagementClass m = new ManagementClass("Win32_LogicalDisk");

ManagementObjectCollection managementObjects = m.GetInstances();

List<ManagementObject> managementList = new List<ManagementObject>();

foreach(ManagementObject m in managementObjects){

    managementList.Add(m);

}

Isn't there a way to get that collection into a List that looks something like:

List<ManagementObject> managementList = new List<ManagementObjec>(collection_array);

Thanks much!

flag

57% accept rate
Please tell us which framework that you are using. 2.0 has a different solution from 3.5 – MagicKat Oct 9 '08 at 16:07

5 Answers

vote up 2 vote down check

What version of the framework? With 3.5 you could presumably use:

List<ManagementObject> managementList = managementObjects.Cast<ManagementObject>().ToList();

(edited to remove simpler version; I checked and ManagementObjectCollection only implements the non-generic IEnumerable form)

link|flag
Your cast could fail, you need ManagementBaseObject instead. – mancaus Oct 9 '08 at 16:33
Not if we want to create a List<ManagementObject>, we don't. Perhaps OfType<ManagementObject> would be a reasonable compromise? – Marc Gravell Oct 9 '08 at 16:38
vote up 0 vote down

You could try:

List<ManagementObject> managementList = new List<ManagementObject>(managementObjects.ToArray());

Not sure if .ToArray() is available for the collection. If you do use the code you posted, make sure you initialize the List with the number of existing elements:

List<ManagementObject> managementList = new List<ManagementObject>(managementObjects.Count);  // or .Length
link|flag
No, there is no .ToArray() – Marc Gravell Oct 9 '08 at 15:58
vote up 0 vote down

As long as ManagementObjectCollection implements IEnumerable<ManagementObject> you can do:

List<ManagementObject> managementList = new List<ManagementObjec>(managementObjects);

If it doesn't, then you are stuck doing it the way that you are doing it.

link|flag
The problem is: it doesn't; it only implements ICollection, IEnumerable, IDisposable – Marc Gravell Oct 9 '08 at 16:11
@Marc Gravell: Then he is stuck doing it the way that he is doing it. The IEnumerable<T> ctor is doing the same thing basically anyways. – MagicKat Oct 9 '08 at 16:16
Not with .NET 3.5, he isn't. – Marc Gravell Oct 9 '08 at 16:17
But we don't know which framework he is using. – MagicKat Oct 9 '08 at 16:19
vote up 0 vote down

managementObjects.Cast<ManagementBaseObject>().ToList(); is a good choice.

You could improve performance by pre-initialising the list capacity:


    public static class Helpers
    {
        public static List<T> CollectionToList<T>(this System.Collections.ICollection other)
        {
            var output = new List<T>(other.Count);

            output.AddRange(other.Cast<T>());

            return output;
        }
    }
link|flag
In reality, pre-initializing the capacity won't save you a huge amount of time. The list will grow with a doubling strategy, so it won't have to resize many times. Less code to maintain, too. – Marc Gravell Oct 9 '08 at 16:16
(especially when compared to the overheads of IEnumeable, and Cast's iterator block...) – Marc Gravell Oct 9 '08 at 16:16
vote up 0 vote down

you can convert like below code snippet Collection obj=new Collection

link|flag

Your Answer

Get an OpenID
or

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