using System.Collections.Generic;
public static void Main()
MethodTwo(1, 2, typeof(Bear));
private static void MethodOne<T>(int one, float two)
Console.WriteLine(one + " " + two + " type " + typeof(T));
private static void MethodTwo(int one, float two, Type t)
Console.WriteLine(one + " " + two + " type " + t);