The plugin is aimed to simplify work with .NET reflection API by providing quick-fixes, problem, highlights and auto-completion items.
##Download
- Writing a ReSharper Plugin: Quick Fixes
- Writing a ReSharper Plugin: Problem Analyzers
- [Writing a ReSharper Plugin: Auto-completion] (http://elekslabs.com/2014/06/writing-a-resharper-plugin-auto-completion.html)
- [Writing a ReSharper Plugin: Search and Navigation] (http://elekslabs.com/2014/08/writing-a-resharper-plugin-search-and-navigation.html)
- And many more...
This section describes basic plugin usages with examples.
- AmbigiousMemberMatchError – For cases when there are several method overloads with the same name in the reflected type.
- BindingFlagsCanBeSkippedWarning – If BindingFlags specified as argument exactly matches the default value used by Reflection.
- IncorrectBindingFlagsError – BindingFlags specified for the current type member are incorrect. For example, BindingFlag.Static is missed for a static member.
- IncorrectMakeGenericTypeHighlighting – Highlighting for MakeGenericType misuse.
- ReflectionMemberNotFoundError – Member with the specified name cannot be found in the reflected type.