a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
23 lines
275 B
C#
23 lines
275 B
C#
public class B
|
|
{
|
|
public virtual T Get<T> ()
|
|
{
|
|
return default (T);
|
|
}
|
|
}
|
|
|
|
public class A : B
|
|
{
|
|
public override T Get<T>()
|
|
{
|
|
T resp = base.Get<T> ();
|
|
System.Console.WriteLine("T: " + resp);
|
|
return resp;
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
new A().Get<int> ();
|
|
}
|
|
}
|