Introduction to Generic

Introduction

Generics allow you to delay the specification of the data type of programming elements in a class or a method until it is actually used in the program. In other words, generics allow you to write a class or method that can work with any data type.

You write the specifications for the class or the method, with substitute parameters for data types. When the compiler encounters a constructor for the class or a function call for the method, it generates code to handle the specific data type.

generic collection

Generic classes and methods combine reusability, type safety, and efficiency in a way that their non-generic counterparts cannot. Generics are most frequently used with collections and the methods that operate on them. Version 2.0 of the .NET Framework class library provides a new namespace, System.Collections.Generic, which contains several new generic-based collection classes. It is recommended that all applications that target the .NET Framework 2.0 and later use the new generic collection classes instead of the older non-generic counterparts, such as ArrayList.

Features of Generics in C#

Generics is a technique that enriches your programs in the following ways.

  • It helps you to maximize code reuse, type safety, and performance.
  • You can create generic collection classes. The .NET Framework class library contains several new generic collection classes in the System.Collections.Generic namespace. You may use these generic collection classes instead of the collection classes in the System. Collections namespace.
  • You can create your own generic interfaces, classes, methods, events, and delegates.
  • You may create generic classes constrained to enable access to methods on specific data types.
  • You may get information on the types used in a generic data type at run-time using reflection.

// Declare the generic class.
public class GenericList<T>
{
    void Add(T input) { }
}
class TestGenericList
{
    private class ExampleClass { }
    static void Main()
    {
        // Declare a list of type int.
        GenericList<int> list1 = new GenericList<int>();
        // Declare a list of type string.
        GenericList<string> list2 = new GenericList<string>();
        // Declare a list of type ExampleClass.
        GenericList<ExampleClass> list3 = new GenericList<ExampleClass>();
    }
}

Generic Methods in C#

In the previous example, we used a generic class; we can declare a generic method with a type parameter. The following program illustrates the concept.

using System;
using System.Collections.Generic;
public class Program
{
    static void Swap<T>(ref T lhs, ref T rhs)
    {
        T temp;
        temp = lhs;
        lhs = rhs;
        rhs = temp;
    }
    static void Main(string[] args)
    {
        int a, b;
        char c, d;
        a = 10;
        b = 20;
        c = 'I';
        d = 'V';
        // Display values before swap:
        Console.WriteLine("Int values before calling swap:");
        Console.WriteLine("a = {0}, b = {1}", a, b);
        Console.WriteLine("Char values before calling swap:");
        Console.WriteLine("c = {0}, d = {1}", c, d);
        // Call Generic Swap
        Swap<int>(ref a, ref b);
        Swap<char>(ref c, ref d);
        // Display values after swap:
        Console.WriteLine("Int values after calling swap:");
        Console.WriteLine("a = {0}, b = {1}", a, b);
        Console.WriteLine("Char values after calling swap:");
        Console.WriteLine("c = {0}, d = {1}", c, d);
        Console.ReadKey();
    }
}

When the preceding code is compiled and executed, it produces the following result.

using System;
public class Program
{
    static void Swap<T>(ref T lhs, ref T rhs)
    {
        T temp = lhs;
        lhs = rhs;
        rhs = temp;
    }
    static void Main(string[] args)
    {
        int a = 10, b = 20;
        char c = 'I', d = 'V';
        // Display values before swap:
        Console.WriteLine("Int values before calling swap:");
        Console.WriteLine("a = {0}, b = {1}", a, b);
        Console.WriteLine("Char values before calling swap:");
        Console.WriteLine("c = {0}, d = {1}", c, d);
        // Call Generic Swap
        Swap<int>(ref a, ref b);
        Swap<char>(ref c, ref d);
        // Display values after swap:
        Console.WriteLine("Int values after calling swap:");
        Console.WriteLine("a = {0}, b = {1}", a, b);
        Console.WriteLine("Char values after calling swap:");
        Console.WriteLine("c = {0}, d = {1}", c, d);
        Console.ReadKey();
    }
}

Generic Delegates in C#

You can define a generic delegate with type parameters. 

Example

delegate T NumberChanger<T>(T n);

The following example shows the use of this delegate.

using System;
using System.Collections.Generic;
delegate T NumberChanger<T>(T n);
public class TestDelegate
{
    static int num = 10;
    public static int AddNum(int p)
    {
        num += p;
        return num;
    }
    public static int MultNum(int q)
    {
        num *= q;
        return num;
    }
    public static int GetNum()
    {
        return num;
    }
    static void Main(string[] args)
    {
        // Create delegate instances
        NumberChanger<int> nc1 = new NumberChanger<int>(AddNum);
        NumberChanger<int> nc2 = new NumberChanger<int>(MultNum);
        // Calling the methods using the delegate objects
        nc1(25);
        Console.WriteLine("Value of Num: {0}", GetNum());
        nc2(5);
        Console.WriteLine("Value of Num: {0}", GetNum());
        Console.ReadKey();
    }
}

Generic Interfaces in C#

It is often useful to define interfaces either for generic collection classes or for the generic classes that represent items in the collection. The preference for generic classes is to use generic interfaces, such as IComparable(Of T) rather than IComparable, to avoid boxing and unboxing operations on value types. The .NET Framework class library defines several generic interfaces for use with the collection classes in the System.Collections.Generic namespace.

 Example

interface IBaseInterface<T> { }
class SampleClass : IBaseInterface<string> { }


Similar Articles