W Willy Denoyette [MVP] Aug 10, 2004 #2 A simple Google search returns a ton of info on the subject..... http://blogs.msdn.com/csharpfaq/archive/2004/03/12/88913.aspx http://www.codeguru.com/columns/Experts/article.php/c7423/ http://www.artima.com/intv/generics.html Willy.
A simple Google search returns a ton of info on the subject..... http://blogs.msdn.com/csharpfaq/archive/2004/03/12/88913.aspx http://www.codeguru.com/columns/Experts/article.php/c7423/ http://www.artima.com/intv/generics.html Willy.
M Mohamoss Aug 10, 2004 #3 Hi ben Mostly they are the same. C# generics is just the same concept of C++ templates . check out the comparison in this article http://www.developer.com/net/cplus/article.php/10919_3367531_1 Mohamed Mahfouz MEA Developer Support Center ITworx on behalf of Microsoft EMEA GTSC
Hi ben Mostly they are the same. C# generics is just the same concept of C++ templates . check out the comparison in this article http://www.developer.com/net/cplus/article.php/10919_3367531_1 Mohamed Mahfouz MEA Developer Support Center ITworx on behalf of Microsoft EMEA GTSC
W Willy Denoyette [MVP] Aug 10, 2004 #4 I have to disagree, C++ templates and generics are similar but generics are not templates. They share some functionality, both can be used to create parameterized types and collections, but this is where similarity stops. Willy.
I have to disagree, C++ templates and generics are similar but generics are not templates. They share some functionality, both can be used to create parameterized types and collections, but this is where similarity stops. Willy.