Richard Deeming

Avatar
  • Total activity 632
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 47
  • Subscriptions 216
  • Created

    R# 8 Upgrade

    We purchased R#7 Full in February. I've just seen the blog post announcing that v8 is coming soon.Needless to say I'm not thrilled at the prospect of having to pay out again within a couple of mont...
    • 1 follower
    • 1 comment
    • 0 votes
  • Created

    BUG: CSS counters

    I have a stylesheet using the CSS2 counter syntax:table.eventList{    counter-reset: day-item;}table.eventList tbody td.counter span:before{    content: counter(day-item, lower-roman);    counter-i...
    • 1 follower
    • 1 comment
    • 0 votes
  • 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...
    • 2 followers
    • 1 comment
    • 0 votes
  • 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...
    • 5 followers
    • 8 comments
    • 0 votes
  • 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 ...
    • 2 followers
    • 1 comment
    • 0 votes
  • 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...
    • 2 followers
    • 1 comment
    • 0 votes
  • 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 ...
    • 3 followers
    • 5 comments
    • 0 votes
  • 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...
    • 3 followers
    • 7 comments
    • 0 votes
  • 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...
    • 2 followers
    • 2 comments
    • 0 votes
  • 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...
    • 2 followers
    • 3 comments
    • 0 votes