Matthew Watson
- Total activity 45
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 16
-
Matthew Watson created a post, CS1998 is removed from VS2026 but is still reported by R# - How to stop R# reporting it?
[Using R# 2025.3.0.2]The CS1998 warning “Async method lacks 'await' operators and will run synchronously” has been removed from Visual studio 2026:Consider not emitting CS1998 for interface impleme... -
Matthew Watson commented, -
Matthew Watson created a post, AnsweredKeyboard shortcut for "Move to resource"
I used to have the "Move to resource" function bound to Ctrl+Shift+R but somehow I've lost that binding. What command should I be looking for in the Visual Studio 2022 Keyboard Mapping settings to ... -
Matthew Watson commented, -
Matthew Watson created a post, [AllowNull] attribute ignored by Resharper
Resharper version = 2020.2.1 Consider the following code from a .Net Core 3.1 console application: using System;using System.Diagnostics.CodeAnalysis;#nullable enablenamespace ConsoleApp1{ class... -
Matthew Watson created a post, Incorrect suggestion to "Convert to 'using' declaration
(Using Resharper version 2020.1.4) Consider the following console application: using System;using System.Runtime.Serialization;using System.Text;using System.Xml;namespace ConsoleApp1{ class Pro... -
Matthew Watson created a post, 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... -
-
Matthew Watson created a post, 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... -