Creating and using a generic class or method

Generics is a very interesting way of writing code. Instead of specifying the data type of the elements in the code at design time, you can actually delay the specification of those elements until they are used in code. This basically means that your class or method can work with any data type.

Getting ready

We will start off by writing a generic class that can take any data type as a parameter in its constructor and do something with it.

How to do it…

  1. Declaring a generic class is actually very easy. All that we need to do is create the class with the generic type parameter <T>:
    public class PerformAction<T>
    {
    
    }

    Note

    The generic type parameter is basically a placeholder for a specific type that will need to ...

Get C# Programming Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.