Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

20 lines
287 B
C#

using System;
public delegate V Mapper<T,V> (T item);
public class List<T>
{
public void Map<V> (Mapper<T,V> mapper)
{ }
}
class X
{
public static void Main ()
{
List<int> list = new List<int> ();
list.Map (new Mapper<int,double> (delegate (int i) { return i/10.0; }));
}
}