a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
32 lines
329 B
C#
32 lines
329 B
C#
using System;
|
|
|
|
namespace TestCase
|
|
{
|
|
interface ITest
|
|
{
|
|
}
|
|
|
|
class CTest : ITest
|
|
{
|
|
public static void Main()
|
|
{
|
|
}
|
|
|
|
public void Bar()
|
|
{
|
|
}
|
|
}
|
|
|
|
class CGenericTest<T,V>
|
|
where T : ITest
|
|
where V : CTest, T, new()
|
|
{
|
|
public V Foo()
|
|
{
|
|
V TestObject = new V();
|
|
TestObject.Bar();
|
|
return TestObject;
|
|
}
|
|
}
|
|
}
|