views:

111

answers:

3

Like Linq 101 samples form Microsoft site,is there any site shows examples on Generics?

or like albhari on threading can i get any ebook?

+1  A: 

This is a good site for starting out with generics

http://www.15seconds.com/issue/031024.htm

Irwin M. Fletcher
+1  A: 

Microsoft has a Generics Sample as part of its collection of Visual C# Samples.

Chapter Three of C# 3.0 in a Nutshell has a section on generics which has an associated page of samples.

Jason
+1  A: 

I think generics aren't such a complicated topic as LINQ or also threading. What is pretty interesting about them are the constraints, which you can read about here: http://msdn.microsoft.com/en-us/library/ms379564%28VS.80%29.aspx#csharp%5Fgenerics%5Ftopic4

eWolf