Matthew Watson
- Total activity 43
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 15
-
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... -
-
Matthew Watson created a post, CompletedHow to stop Resharper from removing [CanBeNull] when typing “?” at the end of a reference type name?
I 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...