Matthew Watson
- Total activity 45
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 16
-
Edited What does "Enable nullability analysis when C# 8 compiler nullable warnings are enabled" do?
Under Resharper Options | Code Inspection | Settings there is an option: "Enable nullability analysis when C# 8 compiler nullable warnings are enabled". What does this actually do, and in what circ... -
Created Resharper C# bug: [PublicAPI] prevents "field can be made readonly" warning for private fields.
Consider the following code: public sealed class Test{ private int _value; public Test(int value) { _value = value; } public int Value => _value;} Resharper will correctly s... -
Edited How to stop Resharper from removing [CanBeNull] when typing “?” at the end of a reference type name?
CompletedI am going through the process of converting my .Net 4.8 (not Core!) projects to use the new C# 8 "nullable reference" feature. To do so, I am changing each source code file in turn by adding #null... -
Created Resharper [Pure] versus Microsoft [Pure]
The JetBrains documentation for [Pure] is here:https://www.jetbrains.com/help/resharper/2016.3/Reference__Code_Annotation_Attributes.html#PureAttributeIt states that it is the same as System.Diagno... -
Created [R# 10 bug] Typing $"{ results in $"{}}"
If you type the following into a C# file:$"{it gets converted to the following text: $"{}}"Obviously this has an extra } at the end, which means you have to delete it manually.Also see the discussi... -
Created Getting "no valid license found" for EVERYONE in our organisation
Hiya,We've suddenly (and simultaneously) all had Resharper disabled on our PCs. When we go to License Information, it says "No valid license found".We have the "Use JB Account" setting ticked. If w... -
Created Publishing a Click Once app from Visual Studio 2013 fails after upgrade to R# 8.2.0.2160
Publishing a Click Once app from Visual Studio 2013 fails after upgrade to R# 8.2.0.2160I have a completely reproducable issue that affects ALL ClickOnce apps:If I turn off R# I can publish and rep... -
Created How to turn off "Note" colour (but not "TODO" colour)
In the colour settings for Resharper there is a single entry for "TODO" which also affects the colour of comment lines that start with the word "Note".I do not wish comment lines that start with "N... -
Created [BUG REPORT] Incorrect Linq refactoring, Resharper version 5.1.1766.4
[BUG REPORT] Incorrect Linq refactoring, Resharper version 5.1.1766.4Consider the following code:using System;using System.Collections.Generic;namespace Demo{ class Program { static vo... -
Created Bug: Code completion not working inside #if DEBUG block
The code completion does not work for me when I'm typing inside a #if DEBUG block (even if the DEBUG configuration is currently selected in Visual Studio).Consider this code:using System;namespace ...