vote up 1 vote down star

Hello everyone.

I don't think that this could be done in C#, but posting this just to make sure. Here's my problem. I would like to do something like this in C#:

var x = 10;
var l = new List<typeof(x)>();

or

var x = 10;
var t = typeof(x);
var l = new List<t>();

But of course this doesn't work. Although this shouldn't be a problem as the type t is resolved at compile time. I understand that this can be solved with reflection, but as types are known at compile time using reflection would be overkill.

flag

71% accept rate
Is x always going to be 10 or is that just a proof of concept? I'm just wondering if you can avoid using the var keyword. – Nathan Taylor Aug 31 at 17:54
It's just a proof of a concept. I was trying to use this kind of code for Func<> and Expression<> to get rid of redundant typing. So the type could be declared explicitly: <pre><code> int x = 10; var l = new List(); </code></pre> – Max Aug 31 at 18:15

4 Answers

vote up 19 vote down check
public static List<T> CreateCompatibleList<T> (T t)
{
    return new List<T> () ;
}

var x = 10 ;
var l = CreateCompatibleList (x) ;
link|flag
Nice one. Really like this solution. – Dykam Aug 31 at 17:59
+1 Sneaky, and works for this case. :) – 280Z28 Aug 31 at 17:59
Muy clevar! Nicely done. – Nathan Taylor Aug 31 at 18:05
That's it. Great! Thanks. Although it seems that this is something C# team should work on. – Max Aug 31 at 18:28
One thing you could add to this is to make it an extension method. Then you could use syntax like this: var l = x.CreateList() – Steven Sudit Aug 31 at 18:53
vote up 4 vote down

You're trying to get .Net to set a generic type using a run-time operator. As you know, that won't work. Generics types must be set at compile time.

link|flag
vote up 2 vote down

Defining generics is done like this in C#:

var someList = new List<int>();

You can not define generics like this:

var x = 1;
var someType = typeof(x);
var someList = new List<someType>();

because you're specifying the type at run time in this case, not compile time. C# doesn't support that.

link|flag
1  
You just repeated what Max stated in the question. – Anton Tykhyy Aug 31 at 17:57
1  
@Anton No I didn't, Max is under the impression that typeof(x) is resolved at compile time, which is not correct. – Joseph Aug 31 at 18:00
@Joseph: Are you sure? I know that x.GetType() is resolved at runtime, because it gives the type that x is currently refering to, but I thought typeof(x) will always give the type of the variable, as defined at compile time. – Steven Sudit Aug 31 at 18:07
In the case of the sample code, the type of someType is System.Type, so it works, but not as desired. You get a list of types, not a list of ints. – Steven Sudit Aug 31 at 18:08
2  
Yes, I know how to define generics. What I was trying to do is to get rid of redundancy in type declarations. I'm not specifying types at runtime. Type inference is resolved at compile time and typeof() operator is also resolves at compile time. It's the GetType() method that resolves type at run time. – Max Aug 31 at 18:19
show 1 more comment
vote up 1 vote down

You can't do it exactly how you are asking, but with a little reflection you can accomplish the same thing

Type genericType = typeof(List<>);
Type[] type = new Type[] { typeof(int) };
Type instanceType = genericType.MakeGenericType(type);
object instance = Activator.CreateInstance(instanceType );
var l = (List<int>)instance;
link|flag
1  
(List<string>) in the last line defeats your purpose. But yes, this is useful in certain cases. – Anton Tykhyy Aug 31 at 18:00

Your Answer

Get an OpenID
or

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