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 have a List<object> which is a collection of various type of objects.

I am writing a helper method which will return a specific type of object. The helper method will accept type name as string parameter.

Note: I am using 3.5 framework.

share|improve this question
1  
Will the supplied type name match the actual type of each object, or do you want to convert the object into an instance of that type? – C.Evenhuis Dec 21 '12 at 15:22
I think you want .OfType<T> - msdn.microsoft.com/en-us/library/vstudio/bb360913(v=vs.90).aspx or .Cast<T> – Matt Dec 21 '12 at 15:22
Are you wanting the return value of the helper method to also be strongly typed, or is simply returning the proper type of object as an object acceptable? – CodingGorilla Dec 21 '12 at 15:24

6 Answers

up vote 8 down vote accepted

If you need to use a string as parameter you can't rely on OfType<T>() extension method. Fortunately it's easy to emulate:

public IEnumerable<object> OfType(this List<object> list, string typeName)
{
    return list.Where(x => x != null && x.GetType().Name == typeName);
}

As pointed out by @ChrisSinclair in the comment this solution does not manage conversions, casts and inheritance/interfaces. Casts (because of user defined conversion operators) and conversions (because of TypeConverters and the IConvertible interface) are little bit more tricky. For simple (implicit) casts (like with inheritance and interfaces) you can use this:

public IEnumerable<object> OfType(this List<object> list, string typeName)
{
    Type type = Type.GetType(typeName);
    return list.Where(x => x != null && type.IsAssignableFrom(x.GetType()));
}
share|improve this answer
2  
Anil didn't specify, but this would not take into account inheritance/interfaces. If that's fine, all the better as otherwise it gets a bit more complicated/slow. Not knocking your solution (+1), just so Anil is aware. – Chris Sinclair Dec 21 '12 at 15:33
1  
@ChrisSinclair you're right, it wasn't in the question so I didn't even think about it! – Adriano Dec 21 '12 at 15:39

Maybe something like that :

var ofTypeTypeA = myList.OfType<TypeA>();
share|improve this answer
3  
-1 as string parameter – bluish Dec 21 '12 at 15:27

A clean way is to force the user to specify the type as type to avoid loose strings in your application.

Then you could use generics and just use the type you are interested in. That would also allow the caller to skip the cast when using the IEnumerable later.

So instead of this:

List<object> newList = GetOfType(myList, "SomeObject");
// CAST!!
SomeObject someObject = newList[0] as SomeObject;
if (someObject != null)
    // use object

you would just do:

IEnumerable<SomeObject> newList = myList.OfType<SomeObject>();
foreach (SomeObject someObject in newList){
    // no cast neccessary

This makes it unsensitive in the future if you should rename the class SomeObject (because refactoring tools would pick up on the class name instead of the string)

share|improve this answer
could the downvoter please explain the downvote? – Default Jan 9 at 15:02

You can use Enumerable.OfType

var input = new List<object>();
input.Add(1);
input.Add("foo");
var bar = input.OfType<string>();
share|improve this answer
3  
As with GeorgesD answer, this does not meet the OP's requirement of accepting the type name as a parameter. – CodingGorilla Dec 21 '12 at 15:26
That was not in the original question. It was most likely edited after it was created. – eandersson Dec 21 '12 at 15:28

I guess you need to cast a single object extracted from the list to a strongly-typed object. And not to cast all the list to it. Otherwise use List<MyType>.

So I would go with this: How to cast to a type in C#.

share|improve this answer

You could use the is operator (or pass the type and check for that also using is). Here is an example of using the is operator:

foreach (var ctl in ControlsList)
{
    if (ctl is CheckBox)
        //Do this
    else if (ctl is TextBox)
        //DoThis
}

And by passing the type as string in the parameter, you could do something similar to get the type to test against:

Type t = System.Type.GetType("System.Int32");
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.