Richard Deeming
- Total activity 632
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 47
- Subscriptions 216
-
Created R# 6.1.1 false-positive for HashAlgorithm.Create(string)
In the following code, R# 6.1.1 marks the "if (hash == null)" test as "always false", and the content of the if block as unreachable:using (var hash = HashAlgorithm.Create(algorithmName)){ if (nu... -
Created Spam
What's with all the spam, and why isn't it being cleaned up? Some of the messages are still here over a week later!I think all new accounts should be moderated until they have at least ten non-spam... -
Created R# 6.1 - False positive on Enum value ToString call
Example:var comparison = StringComparison.Ordinal;string name = comparison.ToString();R# 6.1 flags the ToString call with "Specify a culture in string conversion explicitly".Applying the quick-fix ... -
Created Another XML doc-comment bug
Create a class and add the XML doc-comments. Add a generic type parameter to the class. Try to add the "<typeparam" tag to the comments. R# inserts "<typeparamref name=... />". The only way to ad... -
Created R# 6: Live Templates broken
I have a live template for registering an attached property. When I insert it, R# 6 replaces all template parameters with the literal "a", and doesn't allow me to edit them. The active code window ... -
Created R#6 Smart Code Completion broken
Yet another R# 6 Intellisense issue, and yet another issue which can only be reproduced in a large solution. :(I have a .NET 4.0 console project with a code file which only has using statements for... -
Created R#6 Case Sensitivity
Someone seems to have forgotten that C# is case-sensitive: X-(If a local variable has the same name as a parameter, but with a different case, R# will not display the local variable in the intellis... -
Created R#6 : Web-site language level
I have a C# 3.5 web-site project. R# 6 is suggesting that I use C# 4 features in my code. The only language level options available are Visual Basic:In v5, I could manually add the CSharpLanguageLe... -
Created R#6 : Not recognizing web references
OK, where's the magic switch to make R# 6 recognize my web references???Steps to reproduce: Create an empty web-site project; Add a web reference; Write some code which uses the web reference; Save... -
Created R#6 : How to disable auto-complete in *.aspx / *.ascx?
Or at least fix it so that it doesn't: change the case of every tag and attribute I type; and automatically insert double-quotes when I type the equals sign after an attribute. (NB: If the attribut...