up vote 1 down vote favorite
share [g+] share [fb]

The only C# generics explanations I can ever seem to locate go into the "List<T>" discussion and end there. I am looking for something a little more in-depth, specifically when dealing with <T> in method signatures -- I see some pretty wild syntax at times and am having trouble understanding why and when to use it. I feel like I could be doing certain things smarter or more efficiently at times if I had a better grasp of generics. Thanks!

link|improve this question
3  
So, what is your question? – ichiban May 28 '09 at 20:16
See also stackoverflow.com/questions/467936/… – Jon B May 28 '09 at 20:24
That question asks about a tutorial, this one about a syntax reference, I and I don't agree this request "isn't a real question" (though it could have been phrased more question-like, explicitly asking for URLs & books with such references, that's what it implies). – Alex Martelli May 28 '09 at 20:28
feedback

closed as not a real question by Noldorin, Jose Basilio, mquander, Jon B, Eoin Campbell May 28 '09 at 20:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ.

2 Answers

Very thorough coverage in the MDSN section on C# generics

link|improve this answer
feedback

I highly recommend O'Reilly's C# 3.0 in a Nutshell. It provides a very detailed discussion of Generics, typical usage scenarios, and syntactical intricacies.

link|improve this answer
feedback