Paul Hatcher
- Total activity 47
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 18
-
Created Operator precedence vs braces
in VS 2015 with R# 2017.2 I get a warning for redundant braces for public static DateTime Round(this DateTime value, TimeSpan interval) { var halfIntervalTicks = (interval.Ticks + 1) >> 1; return v... -
Created C++ google tests not found
I have a mixed C#/C++ project and about half the time the test session explorer fails to find the C++ tests. There also does not seem to be a way to force R# to re-scan to locate any missing tests ... -
Created Resharper NUnit 3 Parallelism
For NUnit 3 Does Resharper obey the NUnit Parallelizable attribute, e.g. if I set ParallelScope.Self, that says that the fixture can be executed in parallel with other fixtures Similarly, if I chan... -
Created R# 9.0 - Find commands all disabled
All my find options have become disabled i.e. Find Usages, Find Usages Advanced, etc - how do I get them back? -
Created R# Test Runner ignoring Ignore attribute
Running in VS 2010 with R# 6.0.2145.245 if you execute Run All Tests it runs them all even if they have an Ignore attribute present.This is true for MSTest, not sure about NUnit -
Created Rename in MVC Views
When I rename a class w in VS 2008 it doesn't carry this through to any templates that references it e.g. givenpublic class CategoryModel{ public int Id { get; set; } public string Name {... -
Created if statement reformatting
I reinstalled everything recenty following upgrading my development PC to Windows 7.When I run the reformatter over the code it mainly works but leave behind singleton if statements e.g.if (conditi... -
Created Method return value is never used - not flagged
I've marked Method return value is never used as "Show Error" but following code doesn't get flaggedCryptoUtility.Xor(userBuffer, saltBuffer);What it does do is give me a suggest to "Iterate collec... -
Created ASPX editing unstable
Sometimes when I edit an aspx/ascx file in VS 2005, the IDE goes into a loop where it flicks between the source file and the codebehind rearranging all the toolbars as it goes.It eventually sorts i... -
Created Optimize Using statements
R 4.0 seems to have introduced an optmization on using statements that I'd like to avoid...I have some code such asusing IDType = Guid;public class Customer : IIdentifiable]]>{ private IDType i...