blob: 8fc41c7555a93c08c6de70756c0a5adc24f3e973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using System.Collections.Generic;
class X
{
internal static Dictionary<Type, Func<string, string>> Test = new Dictionary<Type, Func<string, string>> { {
typeof (int),
metadata => "1"
}, {
typeof (uint),
metadata => "2"
},
};
public static void Main ()
{
}
}
|