Home
ReSharper Support | JetBrains
Contact Support
Community
Sign in
Richard Deeming
Total activity
632
Last activity
February 27, 2026 10:36
Member since
October 06, 2010 20:13
Following
0 users
Followed by
0 users
Votes
47
Subscriptions
216
Activity overview
Posts (62)
Comments (307)
Sort by recent activity
Recent activity
Votes
Created
May 29, 2012 12:35
Andrey Serebryansky wote:With the upcoming ReSharper 6.1 you can turn off code completion (in various contexts) for JavaScript onlyAndrey Serebryansky wote: I'm afraid JavaScript code formatting ca...
Community
ReSharper Community
Please let us disable javascript formatting completely
0 votes
Created
December 20, 2012 16:36
Sounds fairly standard to me. If R# didn't do more than VS, there wouldn't be much point in buying it!
Community
ReSharper Community
Is it normal when R# reports an error but VS 2012 doesn't? The error shows up during runtime
0 votes
Created
May 08, 2013 12:41
The simple solution for this method:public static ICollection<T> ToNonDeferred<T>(this IEnumerable<T> list){ return list as ICollection<T> ?? list.ToArray();}This will cover all of the existing c...
Community
ReSharper Community
Is there a way to tell ReSharper that my method returns a non-deferred IEnumerable?
0 votes
Created
May 08, 2013 12:57
If you're using .NET 4.5, you could return IReadOnlyCollection<T>:public static IReadOnlyCollection<T> ToNonDeferred<T>(this IEnumerable<T> list){ return list as IReadOnlyCollection<T> ?? list.To...
Community
ReSharper Community
Is there a way to tell ReSharper that my method returns a non-deferred IEnumerable?
0 votes
Created
July 16, 2013 13:42
Try un-ticking: R# Options -> Code Editing -> C# -> Formatting Style -> Other -> Align Multiple Constructs -> Anonymous Method Body
Community
ReSharper Community
Forcing not to intend anonymous functions
0 votes
Created
June 27, 2013 17:51
Did you try it? Running the following in 3.5:char[] test = new char[] { 'a', 'b', 'c' };string s = string.Concat(test);Console.WriteLine(s);produces the following output:System.Char[]The code is ca...
Community
ReSharper Community
Feature Request: Add String.Concat to performance warnings C# .NET 4.5
0 votes
Created
June 28, 2013 12:12
The reason your IEnumerable<Char> test works is because the variable already contains a String:String perfString = RandomString(10000);IEnumerable<Char> numCharString = perfString.AsEnumerable();Th...
Community
ReSharper Community
Feature Request: Add String.Concat to performance warnings C# .NET 4.5
0 votes
Created
June 10, 2013 22:20
But in the case of:ThisIsAVeryLongTypeName something = new ThisIsAVeryLongTypeName(...);you don't lose any information by changing it to:var something = new ThisIsAVeryLongTypeName(...);Whilst I ag...
Community
ReSharper Community
Entangling Type changes
0 votes
Created
September 27, 2013 12:19
Which documentation did you look at? The MSDN documentation clearly states:The fully qualified name of the Type, including the namespace of the Type but not the assembly; or null if the current ins...
Community
ReSharper Community
Possible bug (?): message 'left operand is never null'
0 votes
Created
September 23, 2013 15:49
It needs a default constructor, and it should avoid any code which might fail at design time. For example, you could check whether the code is running at design time, and replace any database calls...
Community
ReSharper Community
How do I account for bounded properties with Resharper?
0 votes
«
First
‹
Previous
Next
›
Last
»