vote up 1 vote down star

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!

flag
3  
So, what is your question? – ichiban May 28 at 20:16
See also stackoverflow.com/questions/467936/… – Jon B May 28 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 at 20:28

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

2 Answers

vote up 2 vote down

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|flag
vote up 3 vote down

Very thorough coverage in the MDSN section on C# generics

link|flag

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