using System.Collections.Generic; class C { public void S() { Action localMethod = () => { SomeClass.OtherMethod(new Dictionary { {"a", "one"}, {"b", "two"}, {"c", "three"} }); }; } }