Home
ReSharper Support | JetBrains
Contact Support
Community
Sign in
Matt Ellis
Total activity
1008
Last activity
August 03, 2023 15:35
Member since
July 05, 2009 00:17
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
397
Activity overview
Articles (0)
Posts (4)
Comments (607)
Sort by recent activity
Recent activity
Votes
Created
August 15, 2013 12:25
The naming system isn't extensible, so it's not possible to provide a custom name for your variables that would be used in e.g. rename refactorings. However, you could write a plugin that adds item...
Community
ReSharper Open API / SDK
Customize Name Style / Intellisense
0 votes
Created
July 02, 2013 09:59
You can get method declarations from an IClassDeclaration using the MethodDeclarations or MethodDeclarationsEnumerable properties. Or you can use IMethod.GetDeclarations() to navigate from the IMet...
Community
ReSharper Open API / SDK
How do I get the IMethodDeclaration?
0 votes
Created
June 12, 2013 07:44
You want to find the nodes that implement IClass - these are the class declaration nodes. The best way to discover the structure of the PSI of a file is to start ReSharper in "internal" mode. This ...
Community
ReSharper Open API / SDK
Finding the Class Declarations in an ICSharpFile
0 votes
Created
July 02, 2013 09:56
IClassDeclaration inherits from IClassLikeDeclaration, which has a MethodDeclarations property. There's also a MethodDeclarationsEnumerable property. MethodDeclarations is a snapshot, so if you kee...
Community
ReSharper Open API / SDK
Finding the Class Declarations in an ICSharpFile
0 votes
Created
June 12, 2013 07:57
The commands in the menu are just standard Visual Studio commands, so you should be able to use the standard IOleCommandTarget.QueryStatus and Exec. Internally, ReSharper has a similar construct wi...
Community
ReSharper Open API / SDK
How to find all available actions at current position for a plug-in
0 votes
Created
May 13, 2013 16:07
I think what you need to do is get the parameters from the IFormalParameterList, which will give you a list of ICSharpParameterDeclaration instances. Instead of going to the ITypeUsage, you can get...
Community
ReSharper Open API / SDK
Convert a IUserTypeUsage and/or an IPredefinedTypeUsage to an IDeclaredType
0 votes
Created
March 18, 2013 13:35
What happens when you run ReSharper's code cleanup on the original code?
Community
ReSharper Open API / SDK
Formatting a replacement expression
0 votes
Created
March 18, 2013 14:22
Actually, should have asked, what happens if you try to format the second code snippet? As in, is the replace formatting the code as it would be formatted if you ran the code cleanup on it?And yes,...
Community
ReSharper Open API / SDK
Formatting a replacement expression
0 votes
Created
January 14, 2014 13:18
Hi John. AddSuperInterface requires an IDeclaredType instance, which you can get in several ways. One of which is via the TypeFactory static class. You can call TypeFactory.CreateTypeByCLRName and ...
Community
ReSharper Open API / SDK
How do I make a class inherit from an interface: public class Dog : INotifyPropertyChanged
0 votes
Created
July 01, 2014 09:19
This isn't ReSharper code, it's dotCover. It's a background thread, waiting normally on an event to be signalled to tell it that it needs to do some work. This isn't causing any kind of deadlock or...
Community
ReSharper Open API / SDK
R# extension makes VS hang. How to debug?
0 votes
«
First
‹
Previous
Next
›
Last
»