Mark

- Total activity 16
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 6
-
Mark created a post, Tweaking Naming Style Rule
I often use class/interface/struct names that contain multiple trailing capital letters, like IncExpSelectorVM. Resharper, by default, does not like this :). It wants me to instead use IncExpSelect... -
-
-
Mark created a post, AnsweredCan't Turn Off Formatting Hints
This involves 2021.1.3 and VS 2019 16.10.10. I recently started noticing a whole bunch of editing suggestions on code which complies with how I've configured Resharper. I think the suggestions are ... -
Mark created a post, Lost parameter label highlighting
I was messing around with ReSharper performance improvement settings and somehow managed to turn off the automatic highlighting of parameter labels in method calls. Example: in something like CallS... -
-
Mark created a post, Generating IEqualityComparer under VS 2017
When I try to generate the IEqualityComparer implementation for a c# class using Resharper under VS2017, it doesn't recognize the class fields (which are all strings in this case). As a result, it ... -
-
Mark created a post, AnsweredIgnore Folder in Architecture Type Dependency Diagram
I'd like to be able to have the Type Dependency diagram ignore a specific folder in a project, the Migrations folder in an EF Core assembly. That particular folder includes a lot of classes that ha... -
Mark created a post, Razor Syntax Oddity in 3.1
In my cshtml files I frequently initialize javascript/angular variables based on C# services using syntax like the following: $scope.elections = JSON.parse( '@Html.Raw( Json.Serialize( _pageInitSvc...