John Egbert
- Total activity 64
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 23
-
Created How can I get the backing Field for a property in a Action
So from the class "Test" (), I can call .GetPropertyDeclarations(). Is there a way from the IPropertyDeclaration to get the IFieldDeclaration for that property (in the example below: "_name" for Pr... -
Created How do I add/create a short-cut for a specific quick-fix action in R#9
One of my actions:[ContextAction(Name = "Quick fix action", Description = "Quick fix action", Group = "C#")] public class ExtractActionAction : ContextActionBase{ ....} -
Created How do I get the cursor selected code in a plugin
I use the cursor to select several lines of code. Hit Alt-Enter to activate the quickfix. In the plugin, how do I get the selected lines of code as an IBlock or something? -
Created Context menu item when right-clicking multiselected files in solution explorer
I am upgrading some plugins to ReSharper 9 and have read about all the changes to the depreciated Actions.xml, and modified my menu items that appear in the "ReSharper" menu appropriately. But I ha... -
Created Problems upgrading plugins from ReSharper 8.2 to 9
I have tried upgrading my plugins by installeding the updated NuGet package 'JetBrains.ReSharper.SDK' to version 9.0.20141204.190166. But I end up with several errors resolving types that exist in ... -
Created How do a create a ReSharper plugin that I can run against multiple selected files?
I want to select a directory or multiple files in Visual Studio's "Solution Explorer", right-click them, select the "Refactor" sub-menu and select my plugin code to run against the selected files. ... -
Created Is there a way to know what Line and "Column" a code block statement starts at in code
Is there a way to know what Line and "Column" a code block statement starts at in code?For example when modifing the Body of a IMethodDeclaration which has a collection of "Statements"; Is there a ... -
Created How do I make a class inherit from an interface: public class Dog : INotifyPropertyChanged
I want to add the INotifyPropertyChanged interface to aExample:Change this:public class Dog { }to:public class Dog : INotifyPropertyChanged { } -
Created How to I get the underlying type of a generic list from a property: List<Dog>
How to I get the underlying type of a generic list from a property? (IProperty/IPropertyDescriptor)Example:I want to get the Resharper SDK type of 'Dog' for code: List<Dog>I am currently itterating... -
Created How to I find out if an class inherits from another type: class Dogs : List<Dog>
How to I find out if an class inherits from another type?Example:public class Dogs : List<Dog>{}I want to check if Dogs inplements/inherits from IEnumerable.Is there a way to do that through IClass...