Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In C# it's possible to cast to List<T> - so if you have:

List<Activity> _Activities;
List<T> _list;

The following will work:

_list = _Activities as List<T>;

but the translated line with VB.NET which is:

_list = TryCast(_Activities, List(Of T))

throws a compilation error. So I've had a good hunt around and experimented with LINQ to find a way round this to no avail. Any ideas anyone?

Thanks

Crispin

share|improve this question
You have an odd definition of "will work". It may compile if you actually have a class named T, but then it will throw an InvalidCastException at runtime. – Ben Voigt Oct 23 '10 at 0:14
I've just taken a snippet out of Julie Lerman's Entity Framework book so I assumed that she had made it work. Although I can read a lot of C#, there are some constructs that are still unfamiliar to me. – CrispinH Oct 23 '10 at 10:34

3 Answers

up vote 2 down vote accepted

I repro, this should technically be possible. Clearly the compiler doesn't agree. The workaround is simple though:

    Dim _Activities As New List(Of Activity)
    Dim o As Object = _Activities
    Dim tlist = TryCast(o, List(Of T))

Or as a one-liner:

    Dim tlist = TryCast(CObj(_Activities), List(Of T))

The JIT compiler should optimize the temporary away so it doesn't cost anything.

share|improve this answer
Wouldn't it be easier to just throw an InvalidCastException? – Ben Voigt Oct 23 '10 at 0:13
This seems to have done the trick. I'm following through Julie Lerman's Entity Framework book and there's a bit more work to be done before I have running code. – CrispinH Oct 23 '10 at 10:32
Hans! Thanks for your fix. I was able to fix this method and push through some of the other conversion oddities that the vb converting app could not work out and get the VB solution full working for Chapter 26 where this came from. It's available at learnentityframework.com/LearnEntityFramework/downloads/#2ed – Julie Lerman Feb 6 at 16:13

I always use DirectCast(object, type)

share|improve this answer

You can use the generic List.ConvertAll method.

Given a List the method will return a List of a different type using a converter function you supply.

The MSDN article I linked has an excellent example.

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.