a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
31 lines
372 B
C#
31 lines
372 B
C#
class Foo
|
|
{
|
|
public Foo ()
|
|
{ }
|
|
|
|
public void Hello<T> (T t)
|
|
{
|
|
// We're boxing the type parameter `T' to an object here.
|
|
Whatever (t);
|
|
}
|
|
|
|
public void Whatever (object o)
|
|
{
|
|
System.Console.WriteLine (o.GetType ());
|
|
}
|
|
}
|
|
|
|
class X
|
|
{
|
|
static void Test (Foo foo)
|
|
{
|
|
foo.Hello<int> (531);
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
Foo foo = new Foo ();
|
|
Test (foo);
|
|
}
|
|
}
|