Sean Kearon
- Total activity 216
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 74
-
Created [917] Loss of Bookmarks and Breakpoints
When I do a code cleanup, bookmarks and breakpoints against lines that will be moved are lost. Is there a way that they could be preserved?ThanksSean -
Created [917] Missing Code Documentation Analysis Warnings
I have a class and have the XML output turned on in the project's build options. For some members, R# generates a missing documentation warning, for others I just get the compiler warnings. R# se... -
Created [910] Extract Superclass - Constructors
After I extract a superclass from a class that has a default ctor and a non-default ctor, the ctor original class ctor has a ": base()" added to it. This is greyed and will be removed as it's not ... -
Created [818] Delegated Fields
In the dialog that appears after Alt + Ins | Delegating Members there does not seem to be a way to see members by the class or interface they originate from or implement. Didn't the earlier 3.* ve... -
Created [818] Winform Event Handlers Falsely Reporting Unused
I'm getting consistent greyed out, 'unused private member' reports for Code behind with warning: private void itemList_Enter(object sender, EventArgs e) { // Stuff here }Designer f... -
Created [818] Equality Generation Question
I have a new class and have used Alt + Ins and Equality Members to generate a new equality override, operators and IEquatable]]>. The code for the override goes like:public override bool Equals(ob... -
Created [818] Possible NRE
In the code below I get a "possible NRE" over the last reference to "predicate". Am I missing something or is the warning wrong?ThanksSeanPS: Is this new forum software? Very nice if it is! ... -
Created [818] Hangover from VB?
Given:public static class DialogFactory{ static DialogFactory() {} static void New() {}}Hit Ctrl+F12 and type New, the filter will show the static constructor as well as the method.Is th... -
Created [818] Repeated Exceptions With Winforms
When I move to the code behind a windows form I get the exception below. This is happening everytime I go into the file or make any changes in the file. (Could not connect to the JIRA, so reporti... -
Created [804] Quick Fix Generics Enhancement
Given a method like: T CreateNew(); I have the correct statement: Foo foo = CreateNew(); If I copy this and change to: Bar foo = CreateNew]]>();R# offers a single quick fix: "Change ...