The bad side of Anonymous Methods

Can it takes performance issues?
If I use it to Find list like this
int index = list.FindIndex(x => x.ActprID == id);
Can it cause more GC?

Probably just as easy to profile it and see what happens.

1 Like