Reflection Usage Checks¶
This pass checks usage of several of the Reflection???
classes, and suggests
to re-write method calls to property access where possible.
Property accesses are always faster, but more importantly there are some random, and hard to debug issues with method calls on some APC versions. So, using property accesses is a double win.
This pass is complemented by the Reflection Usage Fixer which automatically performs the suggested fixes in your source code.