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
September 04, 2020 07:35
Probably because the control flow is too complicated to analyse in real-time. Try replacing the foreach loop with a simple access of the last item in the list: var list = new List<int>();if (interv...
Community
ReSharper Community
Unexplained suggestion that variable may be null
0 votes
Created
July 27, 2020 09:05
Have you tried enabling Options -> Code Analysis -> Settings -> Enable nullability analysis when C# 8 compiler nullable warnings are enabled?
Community
ReSharper Community
Will Resharper ever leverage System.Diagnostics.CodeAnalysis attributes one day?
0 votes
Created
May 28, 2020 08:49
If you look at the screen-shots further up the article you linked to, the refresh button appears for the "code inspection results", but not the "call tracking" or "value tracking" results. I have n...
Community
ReSharper Community
Refresh the Inspection Results
0 votes
Created
May 27, 2020 09:44
Are the properties set anywhere else in the code? If not, R# is correct - removing the setter won't cause any errors. The property initializer syntax is equivalent to setting the property in the co...
Community
ReSharper Community
Incorrect Auto Property Can Be Made Get Only Suggestion
0 votes
Created
May 06, 2020 11:21
The other option would be to fully-qualify the enum type name: <see cref="YourNamespace.IconType.WellKnownIcon" />
Community
ReSharper Community
R# cannot resolve enum member in xmldoc comment
0 votes
Created
May 06, 2020 09:49
I suspect it's getting confused between the enum type and the property of the same name. Try prefixing the reference with the member type identifier: <see cref="F:IconType.WellKnownIcon" />. https:...
Community
ReSharper Community
R# cannot resolve enum member in xmldoc comment
0 votes
Created
February 13, 2020 11:02
Try adding [InstantHandle] to your func parameter. public static T FirstOrDefault<T>([NotNull] this IReadOnlyList<T> list, [NotNull, InstantHandle] Func<T, bool> func) However, I'd be surprised if ...
Community
ReSharper Community
Null-treat pessimistic mode: how make ReSharper be satisfied when using predicates
0 votes
Created
February 13, 2020 10:54
Have you tried deleting the _ReSharper.Caches folder from your project (with VS closed, obviously)? That usually fixes it for me.
Community
ReSharper Community
Solution Wide Analysis - Regression after upgrade to 2019.3.2
0 votes
Created
February 05, 2020 11:06
My guess would be that either there's a firewall getting in the way, or you don't have TLS 1.2 enabled in your client protocols. How to enable Transport Layer Security (TLS) 1.2 on clients - Config...
Community
ReSharper Community
Can't install Resharper for C#
0 votes
Created
January 27, 2020 09:44
ReSharper has its own "heap allocations viewer" plugin which might help: https://plugins.jetbrains.com/plugin/9223-heap-allocations-viewer
Community
ReSharper Community
Boxing / un-boxing
0 votes
«
First
‹
Previous
Next
›
Last
»