blob: 9656bee8cd2431569471f21994248ed79a1af34d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System.Collections.Generic;
class C
{
public void S()
{
Action localMethod = () => {
SomeClass.OtherMethod(new Dictionary<string, string>
{
{"a", "one"},
{"b", "two"},
{"c", "three"}
});
};
}
}
|