Generic Data type
What is the use of Generic data type?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Datta KharadPosted Nov 22, 2011, 5:34 AM
Advantages of Generic Data Type:-
Use generic types to maximize code reuse, type safety, and performance.
The most common use of generics is to create collection classes.
The .NET Framework class library contains several new generic collection classes in the System.Collections.Generic namespace. These should be used whenever possible instead of classes such as ArrayList in the System.Collections namespace.
You can create your own generic interfaces, classes, methods, events and delegates.
Generic classes may be constrained to enable access to methods on particular data types.
Information on the types that are used in a generic data type may be obtained at run-time by using reflection.
Kunal NaikPosted Nov 22, 2011, 2:18 AM
Please refer following links,
Link1
Link2
Link3
Priya LingePosted Nov 22, 2011, 2:03 AM
Please check below link.
http://msdn.microsoft.com/en-us/library/windows/desktop/dd374107(v=vs.85).aspx
Thanks.
Satyapriya NayakPosted Nov 22, 2011, 1:49 AM
Please refer Our recommended articles
Thanks