Home
ReSharper Support | JetBrains
Contact Support
Community
Sign in
Richard Deeming
Total activity
632
Last activity
February 27, 2026 10:36
Member since
October 06, 2010 20:13
Following
0 users
Followed by
0 users
Votes
47
Subscriptions
216
Activity overview
Posts (62)
Comments (307)
Sort by recent activity
Recent activity
Votes
Created
May 11, 2012 13:01
Since you're only adding items to the list, and not replacing it with a new list instance, you don't need the "ref" modifier on that parameter.
Community
ReSharper Community
R# makes invalid suggestion that forloop can be represented as LINQ when the loop contains ref or out parameters.
0 votes
Created
April 25, 2012 19:46
You should be able to do this with Visual Studio's built-in Find & Replace. Ctrl+Shift+H or Edit -> Find and Replace -> Replace in Files; In the "Find what" box, enter: CDate\("{:z}\.{:z}\.{:z}"\)...
Community
ReSharper Community
"Search with pattern" problem
0 votes
Created
April 24, 2012 13:00
The ".Attribute" method can return null. Although you've checked that the attribute exists on the line above, R# has no way of knowing that both calls will return the same value. For example, the X...
Community
ReSharper Community
Incorrect "possible null reference" warning?
0 votes
Created
April 19, 2012 12:37
Is it the target profile? Console applications tend to default to the client profile, which doesn't include System.Web, so I wouldn't expect to see an action to reference it.Having said that, Syste...
Community
ReSharper Community
Resharper 6.1: Reference suggestions not always working
0 votes
Created
August 10, 2012 11:42
slaneyrw wrote:Just out of interest, some of those example statements return ints, not stringThe compiler is able to infer the return type (the TResult type parameter), and only needs you to specif...
Community
ReSharper Community
"Return value of a pure method not used" warning issued for a lambda expression.
0 votes
Created
October 26, 2012 12:26
+1 for that!Your example is missing:<!doctype html><!--[if lt IE 7]> <html lang="en"> <![endif]--><!--[if IE 7]> <html lang="en"> <![endif]--><!--[if IE 8]> <html lang="en"> <![endif]-->...
Community
ReSharper Community
Feature request: Understand conditional comments
0 votes
Created
December 17, 2012 17:45
Based on the existing external annotations, I'd guess that you need something like this:<member name="M:lib.Log.Error(System.String, System.Object[])"> <attribute ctor="M:JetBrains.Annotations.S...
Community
ReSharper Community
Help with creating a Custom Pattern
0 votes
Created
December 17, 2012 19:59
That example is equivalent to:[NotNull]public static XmlReader Create([NotNull] Stream input){ ...}In this case, there is an attribute on the method parameter, which is why there is a named param...
Community
ReSharper Community
Help with creating a Custom Pattern
0 votes
Created
December 13, 2012 13:10
I don't think the warning is invalid - pair.Value is an IList<T>, which could easliy be null. Passing a null list to the Select method will result in an ArgumentNullException.You should also get a ...
Community
ReSharper Community
Invalid message about NotNull assignment?
0 votes
Created
January 09, 2013 13:39
Your preferred code has a subtle race condition which could lead to a NullReferenceException. In multi-threaded code, it is possible that the last subscriber to the event could be removed between t...
Community
ReSharper Community
How to change template of Invoker?
0 votes
«
First
‹
Previous
Next
›
Last
»