Richard Deeming
- Total activity 632
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 47
- Subscriptions 216
-
Created Ctrl+Alt+Ins not working
AnsweredThe Ctrl+Alt+Ins shortcut for the "generate file besides" command does not work when the cursor is at the very start of a C# file. If I move the cursor to any other position in the file - even one ... -
Created BUG: Incorrect "return value never used" warning (R# 2019.1 EAP 4)
A non-async method which returns a Task (rather than a Task<T>) which is awaited displays an incorrect "return value is never used" error. Eg: static async Task Main() => await TestMe();static Task... -
Edited WPF StringFormat not recognised
The StringFormat property - The complete WPF tutorial R# can't seem to cope with a StringFormat in a WPF binding if the format contains a comma: <TextBlock Text="{Binding Path=VatReturn.TotalAcquis... -
Created Handlebars.js - incorrect "Unexpected token" error
AnsweredI'm using Handlebars.js in an ASP.NET MVC application. When I try to use the {{#if ...}} block helper to wrap the checked attribute of a checkbox or radio button, R# is throwing up an incorrect "un... -
Created "Cannot resolve template" with UIHint
AnsweredI have an ASP.NET MVC 5.2.7 application which uses UIHint on several model properties to specify the editor template. The project compiles and runs as expected, and uses the correct editor template... -
Created R# causing VS2017 to crash
Second time in the last two days this has happened whilst working on an ASP.NET Core project: I can't see any sign of a log file to help diagnose the problem. -
Created WebForms: R# does not recognise async model binding
Async model binding was added to WebForms in .NET 4.6 back in 2015: Cool ASP.NET Web Forms Features in 2015 – Async Model Binding | ASP.NET Blog R# 2018.1 still doesn't recognise it, and flags it a... -
Created Incorrect "symbol not resolved" errors
I have a large ASP.NET MVC (not Core) project, which builds and runs without error. Every other day, R# decides that two particular extension methods from a referenced assembly cannot be resolved. ... -
Created ASP.NET MVC C# Language Level - Not working
AnsweredVisual Studio 2017 v15.2R# 2017.1.2 I have an ASP.NET MVC project which builds and runs correctly. R# is consistently telling me that every single view is an error, because it is using a C# 6 langu... -
Created Argument validation issue
I have a method which takes an XDocument argument. If either the document or its root element are null, I want to throw an ArgumentNullException. For clarity, I also want to decorate the argument w...