YK
Size: a a a
YK
YK
P
P
YK
Д
Д
Д
Б
P
Б
P
YK
YK
Б
YK
P
static bool greaterThanTwo(int arg)
{
return (arg > 2);
}
Func<int, bool> someFunc = greaterThanTwo;
IEnumerable<int> result = list.Where(someFunc);
выглядит красивее, чем это?var result = list.Where(x => x > 2);
YK
YK
YK