blob: 0299d095e027314d89aa2049aeccdaf9a83e04ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
using System;
class Model
{
public int Value;
}
class C1<T1>
{
public void Add (Func<T1, int> t)
{
}
}
abstract class C2<TModel>
{
public abstract void ApplyImpl<U> (C1<U> c1) where U : TModel;
}
class C3 : C2<Model>
{
public override void ApplyImpl<Foo> (C1<Foo> c1)
{
c1.Add (t => t.Value);
}
}
class Program
{
static void Main ()
{
var v1 = new C1<Model> ();
var c3 = new C3 ();
c3.ApplyImpl (v1);
}
}
|