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

What does the '1 mean when I GetType().Name on a generic type? Just curious... Thanks!

share|improve this question

1 Answer

up vote 10 down vote accepted

It means that the type takes in 1 generic type argument.

If you're wondering why it's necessary, it's to distinguish different types based on name alone, rather than based on other attributes (like how many type arguments it takes).

share|improve this answer
so '2 would mean 2 args correct? – Mike Dec 29 '10 at 21:47
yup, that is correct. – Femaref Dec 29 '10 at 21:48
Yup. (Here's some more text to make the answer longer so I can actually answer you.) :) – Mehrdad Dec 29 '10 at 21:48
@Mike To illustrate, check these strings: typeof(Action).Name, typeof(Action).ToString(), typeof(Action<>).Name, typeof(Action<>).ToString(), typeof(Action<,>).Name, typeof(Action<,>).ToString(), typeof(Action<,,>).Name, typeof(Action<,,>).ToString(), and so on. (Result (the last two): "Action`3" and "System.Action`3[T1,T2,T3]") – Jeppe Stig Nielsen Feb 17 at 21:23

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.