C# Genetic Types

09:59 0 Comments A + a -


class Generic<T>
{
    public void Add(T X)
    {
        Console.WriteLine("{0}", X);
    }
}

.