Home
ReSharper Support | JetBrains
Contact Support
Community
Sign in
Evgeny Pasynkov
Total activity
621
Last activity
January 17, 2016 23:25
Member since
March 15, 2004 13:53
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
254
Activity overview
Articles (0)
Posts (37)
Comments (330)
Sort by votes
Recent activity
Votes
Created
August 24, 2007 09:13
You have to construct "IAttribute" and add it to IClassDeclaration.IClassDeclaration classDeclaration;....classDeclaration/AddAttributeAffter (attribute, null);The easiest way to construct IAttribu...
Community
ReSharper Open API / SDK
How do I add an attribute to my class
0 votes
Created
February 13, 2009 10:25
Unfortunately, this list is not pluggable yet :(-- Eugene PasynkovReSharper Technical LeadJetBrains, Inc.http://www.jetbrains.com"Develop with pleasure!""Alexandre TrA¿panier" <no_reply@jetbrains.c...
Community
ReSharper Open API / SDK
New to Plugin programming: How do I?
0 votes
Created
February 11, 2009 16:02
Please note, that "static class" is C#-specific meaning.Use CSharpDeclaredElementUtil.IsStaticClass method-- Eugene PasynkovReSharper Technical LeadJetBrains, Inc.http://www.jetbrains.com"Develop w...
Community
ReSharper Open API / SDK
How to find out if a class is static?
0 votes
Created
January 25, 2009 15:51
That's right-- Eugene PasynkovReSharper Technical LeadJetBrains, Inc.http://www.jetbrains.com"Develop with pleasure!""jbuedel" <no_reply@jetbrains.com> wrote in message news:5768356.734123282102915...
Community
ReSharper Open API / SDK
How to create a TextRange from a line number?
0 votes
Created
January 21, 2009 11:13
To get the full lust of methods in the file, traverse the AST tree and find all elements whichimplement interface "IMethodDeclaration". But may be you need not only methods, but all entities which ...
Community
ReSharper Open API / SDK
Modifying method parameters
0 votes
Created
October 14, 2008 21:39
This is the easiest solution, but I'm not sure if it suits your needs.The key problem is that the type of the expression is known, but some parts of the expression are not resolved.For example: inv...
Community
ReSharper Open API / SDK
Resolved and unresolved statements
0 votes
Created
September 17, 2008 09:38
Both these classes are the part of error highlighting subsystem.The document is highlighted in multiple passes.The DaemonStage is the factory class for the highlighting passThe DaemonStageProcess i...
Community
ReSharper Open API / SDK
The purpose of DeamonStage and DeamonStageProcess
0 votes
Created
June 26, 2008 11:58
I see general misunderstanding.There are 2 major hierarchies:1) hierarchy of type elements (i.e. classes, interfaces). All of them have ITypeElement in root2) hierarchy of constructed types: such a...
Community
ReSharper Open API / SDK
Generic types
0 votes
Created
June 30, 2008 09:11
In this case you have to manually parse that given line, then get ITypeElements via CLR name, and construct IType.For example, in you line "Examples.Wrapper`1[Examples.Customer]" there are 2 type e...
Community
ReSharper Open API / SDK
Generic types
0 votes
Created
June 19, 2008 14:05
You're going wring wayYou can't replace ITypeUsageNode by IReferenceExpressionNode - these are 2 different nodes, and thus you can't replace one by another. This is the main reason why usage of "Mo...
Community
ReSharper Open API / SDK
What parameter values are required to create an IReferenceExpression
0 votes
«
First
‹
Previous
Next
›
Last
»