Calling generic method with Type variable

Viewed 54985

I have a generic method

Foo<T>

I have a Type variable bar

Is it possible to achieve something like Foo<bar>

Visual Studio is expecting a type or namespace at the bar.

2 Answers
Related