top button
Flag Notify
Site Registration

What are generics in C#.NET?

+1 vote
171 views
What are generics in C#.NET?
posted Dec 3, 2014 by Balu

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Generics are used to make reusable code classes to decrease the code redundancy, increase type safety and performance. Using generics, we can create collection classes. To create generic collection, System.Collections.Generic namespace should be used instead of classes such as ArrayList in the System.Collections namespace. Generics promotes the usage of parameterized types.

answer Dec 3, 2014 by Manikandan J
...