Generics C#

using System;
using System.Collections.Generic;
using System.Text;
public class OneParamType {}
public class TwoParamType {}
public class TypeDumper {
    public static void DumpTypeInfo() {
        Console.WriteLine(typeof(T));
        Console.WriteLine(typeof(U));
        Console.WriteLine(typeof(V));
        Console.WriteLine(typeof(OneParamType));
        Console.WriteLine(typeof(OneParamType));
        Console.WriteLine(typeof(TwoParamType));
        Console.WriteLine(typeof(TwoParamType));
    }
    public static void ShowTypeInfo() {
        TypeDumper.DumpTypeInfo();
    }    
}