What are some examples of you would use generics in C#/VB.Net and why would you want to use generics?
|
4
|
|||||||||
|
|
|
Have a look at the MSDN introduction to C# generics. |
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
One common, and extremely helpful, use of generics is strongly-typed collection classes. Traditionally, all collection classes had to be passed objects, and return objects when queried. You had to handle all the type conversion yourself. With generics, you don't have to do that. You can have List(Of Integer), and when you request values from it, you'll get integers. You won't get objects that you then have to convert to integers. |
||
|
|
|
|
The most common reasons and use cases for generics are described in the MSDN documentation mentioned before. One benefit of generics I'd like to add is that they can enhance the tool support in the development process. Refactoring tools like those integrated in Visual Studio or ReSharper rely on static type analysis for providing assistance while coding. As generics usually add more type information to your object model, there is more information for such tools to analyse and to help you coding. On a conceptual level, generics help you solving "cross-cutting" concerns independently from your application domain. Regardless whether you are developing a financial application or a book store, you will sooner or later need to maintain collections of things, be it accounts, books or whatever. The implementation of such collections usually needs to know little to nothing about the things to be maintained in those collections. Hence, the generic collections shipped with the .NET framework are a primary example for a generics use case. |
||
|
|
|
|
Example 1: You want to create triple class
Example 2: A helper class that will parse any enum value for given data type
|
||
|
|
|
|
Simply, you declare a type or method with extra tags to indicate the generic bits:
The above defines a generic type Unlike C++ templates, .NET generics are provided by the runtime (not compiler tricks). For example:
All
Now
Constraints can also involve other generic type arguments, for example:
You can have as many generic arguments as you need:
Other things to note:
for example:
|
|||
|
|
|
|
See MSDN article. |
||
|
|
