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.
|
I have a 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. |
|||
|
If you need to use a string as parameter you can't rely on
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
|
|||||||||
|
|
Maybe something like that :
|
|||||
|
|
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:
you would just do:
This makes it unsensitive in the future if you should rename the class |
||||
|
|
|
You can use Enumerable.OfType
|
|||||||
|
|
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 So I would go with this: How to cast to a type in C#. |
|||
|
|
|
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:
And by passing the type as string in the parameter, you could do something similar to get the type to test against:
|
||||
|
|
objectacceptable? – CodingGorilla Dec 21 '12 at 15:24