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
October 07, 2013 10:22
You can't rely on string comparison between ProjectLanguage and PsiLanguageType, since there are more PsiLanguageTypes than ProjectLanguages. The ProjectLanguage type is used to show the project's ...
Community
ReSharper Open API / SDK
Accessing all file Templates
0 votes
Created
August 16, 2013 16:07
Not really, no. ILookupItem can represent any kind of lookup item - method, property, keyword, live template and so on. So, there is no direct way to get at this information. You could try to downc...
Community
ReSharper Open API / SDK
Retrieve "fully-qualified-name" from ILookupItem
0 votes
Created
August 19, 2013 09:39
No, there isn't another way to get the qualified name for each element in the open code completion window, because the items in the window might not have fully qualified names, e.g. keywords or liv...
Community
ReSharper Open API / SDK
Retrieve "fully-qualified-name" from ILookupItem
0 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
«
First
‹
Previous
Next
›
Last
»