// Generic Class In C#
// First, just try to understand the program and then read any article
// This is a simple example that I have created
using System;
public class GenericClass<T>
{
public T value;
public GenericClass(T abc) //constructor
{
value = abc;
}
public void display() //method to display value

Join the conversation! Your thoughts help the community grow.