Dick Nagtegaal
- Total activity 77
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 24
-
Created Is it possible to turn of this R# IntelliSense behavior?
I'm sorry for the bad subject of this post. Since I don't know how the behavior is called I don't know a better subject.Using ReSharper's IntelliSense, I want to type in code to show a MessageBox w... -
Created R#5.1 IntelliSense Filter members by [EditorBrowsable] attribute and overloads
I'm using the setting in Options | IntelliSense | Completion Appearance to Filter members by [EditorBrowsable] attribute.If I start typing this code:var command = new SqlCommand();command.Parameter... -
Created Form Eventhandler can be made static: incorrect suggestion?
Hi,I'm not sure if this is a bug in ReSharper of in VS2008, or something else.In VS2008SP1, I create a Windows Form Application. By double clicking the Form's area I create an event handler for the... -
Created Intellisense for case statements on enumerations not working?
I suppose I must have a strange setting in my options or something, cause I can't imagine this being an unnoticed bug.I create a Windows Form Application in VS2008. Then I go to the forms propertie... -
Created How to prevent warning "possible compare of value type with 'null'"?
I'm trying to override the ToString() method in a generic class. A trimmed down version of the class isusing System;public class GenericClass<T> { public T Value { get; set; } public override... -
Created Can ReSharper Code Cleanup format comments?
I've been searching for a way to have ReSharper's Code Cleanup cleanup my code comments. That is, I'd like to always have a space after the // or ///. I couldn't find an option for this. Did I over... -
Created Can Resharper have special settings for enum?
I'm using Resharper 5.1.1 to reformat my code (Cleanup Code, Ctrl+E, Ctrl+C). I can't get it to format my code the way I want it to. I want my code to look like this: public class Person { ... -
Created R#5.1 Possible 'System.NullReference Exception' why?
I have a simple Windows Form with a TextBox named textBox1. In the class I have the following code: public partial class Form1 : Form { public Form1() { Initializ... -
Created Can Resharper refactor a control name including its event handlers?
Say I have a Windows Form and dragged a button on it. The button is called button1. I double click the button to generate its event handler. The event handler is named button1_Click.Can Resharper h... -
Created R# 5.1 Convert for loop to foreach loop not working
I have a problem trying to let Resharper 5.1.1753.4 convert a for-loop to a foreach-loop.I have the following code:var intArray = new[] { 1, 3, 5 };for (var i = 0; i < intArray.Length; i++){ Deb...