RefactoringEssentials icon indicating copy to clipboard operation
RefactoringEssentials copied to clipboard

Refactoring Essentials for Visual Studio

Results 100 RefactoringEssentials issues
Sort by recently updated
recently updated
newest added

class C { public int I1 { get; set; } public int I2 { get; set; } } should be refactored to class C { public C(int i1, int i2)...

feature request

``` ERROR [2017-03-10 09:53:34Z]: Exception in diagnostic analyzer AD0001:Analyzer 'RefactoringEssentials.CSharp.Diagnostics.FunctionNeverReturnsAnalyzer' threw an exception of type 'System.NotSupportedException' with message 'Specified method is not supported.'. System.NotSupportedException: Specified method is not supported. at...

Using VS2017 RTM with Refactoring Essentials 4.8.0 NuGet package. Gets warning from analyzer: Warning AD0001 Analyzer 'RefactoringEssentials.CSharp.Diagnostics.ConvertClosureToMethodGroupAnalyzer' threw an exception of type 'System.NullReferenceException' with message 'Object reference not set to...

I get this where "SmoothenMinRange" is a const int and "NUD_Percent" is a NummericUpAndDown Control: ```C# NUD_Percent.Value = (_isSharpenTool) ? (decimal)0 : (decimal)SmoothenMinRange; ```

I think the proposal > Replace with '|=' for bool is pointless and lessen readability. Additional to that it is inconsistent as well. for example by: ```C# if (_margingUnit !=...

I have: ```C# enum From { Bottom, Top, Left, Right } void UpdateAdvanced(decimal wert, string nudname){ decimal h = 0; if ((From)DGV.Rows[0].Cells[2].Value != From.Top) { DGV.Rows[0].Cells[1].Value = h - wert;...

This issue is used to centralize all the work done on VS 2017 support / C# 7 feature extensions. ### General Notes 1) We have introduced copies of all projects...

up-for-grabs
Language-C#
Language-VB
VS2017

RefactoringEssentials cannot cope with certain refactorings in certain situations. On the other hand, it's too cumbersome to restart Visual Studio from the command line, then deliberately reproduce the error, go...

Whilst it is possible to suppress a single instance of an issue, or even all of the known issues in a file, or via the ruleset suppress a rule completely...

question

I have: ``` C# var fmd = new MainDialog(); fmd.DbFile = dbfile; fmd.RetColumnIndex = retcolumnindex; fmd.SearchColumnIndex = searchcolumnindex; fmd.width = DialogWidth; fmd.height = DialogHeight; fmd.SearchFirstCS = SearchFirstCaseSensitive; fmd.SearchAnyCS = SearchAnyCaseSensitive;...

feature request