blob: c8c3c918b0e3e3e86b9b0ab50f8f3b4dc02817f3 (
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"}
});
};
}
}
|