Tagged Questions
1
vote
2answers
49 views
How to create a custom pattern to replace `as` cast with direct cast in Resharper?
I have a lot of code like this:
ml = this.CriteriaList.ItemByName(SC_STATIONS) as MultiList;
I'd like to replace it with
ml = (MultiList) this.CriteriaList.ItemByName(SC_STATIONS);
To that end, ...
1
vote
1answer
37 views
Does Resharper contain a Convert to Direct Cast refactoring?
I have code like this all over the code base:
MultiList ml = this.CriteriaList.ItemByName(SC_SAM_CATEGORIES) as MultiList;
I want to convert it to direct cast:
MultiList ml = (MultiList) ...
0
votes
0answers
31 views
.Net way to pick up common instances without passing them every time
I have a code base that my team is discussing refactoring. There are lots of different entities and all use a common IContext object that hold an open database connection and user details.
This means ...
0
votes
1answer
16 views
If a method takes a particular type of object as an argument, should it return a new instance of that object?
I'm trying to decide which of the two tests are structured the best to determine how Repository.SaveFoo(x) should be written.
//version 1
[TestMethod]
public void Saving_a_new_Foo_results_in_new_id()
...
2
votes
2answers
50 views
Refactoring in two thousand lines of code xaml page
My page has 5 tab items and there are over two thousand lines of code. Is it possible to move the code of each tab item to some kind of template? How can I refactor such a big page?
Thank you.
0
votes
1answer
18 views
Possible to make this event DRY'er, guidance with refactoing
I have a 3 radio buttons that control what state a couple textboxs are in, I am using one event for all 3 buttons but the part that controls the textbox seems like it could be stream lined even more ...
0
votes
0answers
54 views
Delegates for logging
How can I refactor this piece of code?
ulong get_item_action_id = log.LogAction(iteration_id, "GET_ITEM_SERVICE");
try
{
p = serv.GetItemById(get_item_action_id, ls.externalItem.item);
}
catch ...
3
votes
1answer
92 views
How to safely and cleanly rewrite critical/production code? [closed]
I have some critical production routines need to be rewritten from scratch. Take a simple example:
public class ProductionClass {
public IList<Values> WillBeFiredIfThisBreaks(Input input) {
...
0
votes
2answers
96 views
Refactoring DAL using DI, being able to change the DAL later
What we currently have is an relatively old codebase, using EntitySpaces (doesn´t really matter, but it´s an ORM, which was nice to use back in the days, but with my recent EntityFramework experience ...
0
votes
0answers
105 views
Working with CSLA.NET? [closed]
We would like to enhance our current winform projects that is clean out code and refactor some bits. This included re-writing some parts using Test Driven Development, bring in SOLID principles and ...
6
votes
0answers
132 views
What is the best ORM for an enterprise system [closed]
I am in charge of refactoring an enterprise system to make it more maintainable, extensible and testable. When the project was started, the team made a decision to go with LINQ2SQL which we now ...
0
votes
1answer
29 views
Updating new instance of a form instead of a previous one
So I am working on someone else's code for a scheduler type program. He creates a timer to run every 10 seconds to check a list of schedules to see if any has to be run. I modified to update the ...
0
votes
5answers
86 views
What are the pros and cons of making a FAT class a partial one & splitting it into partial classes?
Recently I was considering a class that seems to become fat because of too many methods in it.
A legacy code...
That has many business logic-wise methods doing all types of CRUD on various ...
4
votes
1answer
154 views
How do I find what methods are called from a C# class method - NOT at run time
I have a C# class that has far too much code in, and I want to refactor it. What I would like to do is start with all the public methods, and build a tree for each one, showing which other methods in ...
4
votes
4answers
125 views
Best way to append newline to string except for last
I was looking for the best/cleanest way to iterate over a list of strings and then create a single string of those separated by newlines (except for the last). Like so:
String 1
String 2
String 3
I ...
1
vote
1answer
29 views
How to refactor an innerclass to toplevel class in visual studio?
I have a couple of questions regarding refactoring in VS2010. First I want to know if I can refactor an inner class and make it a top level class. Namely if I have:
namespace ABC{
Public class ...
1
vote
0answers
38 views
How to refactor a project which uses both Serialisable and DataContract to use just DataContract
I have a project which serialises its data using DataContractSerializer. Unfortunately, the persistable classes were not all tagged with DataContract - some are tagged with Serializable and some with ...
2
votes
2answers
113 views
Edit .NET assembly and recompile
I'm in a really bad situation. I lost my source code and my customer needs to change a little bit in the application. Think of edit an assembly for an example: Test.dll then add a code line and ...
0
votes
4answers
100 views
Overloading methods, reusing code [closed]
How can I refactor this so that I dont repeat the same code in each method?
private void setupTooltip(Grid obj)
{
var controls = ...
1
vote
1answer
112 views
Work around for deriving from a generic type parameter
I realize it is not possible to derive from a generic type parameter, and I understand all the complications that arise if it is allowed.
Generics FAQ
Why it can't be done
So my question is, how ...
2
votes
1answer
85 views
Are there any tools that can help us refactor IEnumerator properties to IList<T> or similar?
We have a very old code base(that actually is not horrible quality). It dates back to when .Net was pre-release, which I suspect is the cause of some of these weird conventions.
Anyway, we just ...
3
votes
2answers
201 views
Refactoring of .NET code to comply with coding standards
we have a code base (VB.NET and C#) and a new coding standard. Do you have suggestions of tools that can move through a project and rename parameters/fields/properties/metothods etc according to the ...
0
votes
1answer
86 views
Refactor solution to use Entity Framework 4.3 (Code First)
I'd like to have some advices on the problem:
We're having a solution that uses classic ADO.NET for data access (its like 4+ years old).
The data-access architecture has been built back in times of ...
3
votes
2answers
173 views
Resharper reworked a for loop. Is this LINQ statement doing too much in one line?
[WebMethod(Description = "Return all activities by Task.")]
public IList<ActivityDto> GetActivitiesByTaskID(int taskID)
{
IList<Activity> activities = ActivityDao.GetByTaskID(taskID);
...
0
votes
2answers
81 views
Trying to refactor this FileStream .NET code
I've got the following Stream code . and I feel that it's really old and ugly and that there should be a cleaner way to do this.
// Write the current chunk to the stream.
using (var fileStream = new ...
2
votes
1answer
95 views
Clean code and refactoring. Extra local variable
We had big discussion about small peace of code in our team.
Example 1 developer added extra local variable to make code more readable. In local variable he saved value from constant.
Example 2 same ...
3
votes
3answers
302 views
Refactoring a static class to separate its interface from implementation
I am working on a .NET based application, where some of the core application classes were designed with only static methods.
Example usage:
// static access.
Parameters.GetValue("DefaultTimeout");
...
1
vote
1answer
85 views
Systematically replace namespaces
SO I have a HUGE C#/ASP.NET application that is now getting re-appropriated for other projects. I would like to change our project specific namespaces to something more generic.
Using the ...
0
votes
2answers
96 views
Parsing match operator and refactoring switch cases
I need a function that will take operands/operators as parameters and provide the evaluation result.
The problem that I am facing is how to elegantly parse an operator.
Sample code is as below
...
0
votes
3answers
95 views
Refactor sql query from source code
I have a method which contains a very big sql query directly in the .CS file. What would the recommended refactoring method be?
3
votes
1answer
92 views
How can I remove shared variables from legacy code
In the system there is a singleton for currently logged user (our own user not windows user) containing a shared instance.
In a few hundred data access class files this is used to set CreatebyID and ...
0
votes
3answers
160 views
Can I refactor class constructor to use a a new class, using Visual Studio?
I have the following class, that has too many parameters in the constructor, and I want to refactor the class to receive only one object that encapsulate all the parameters.
public class MyClass
{
...
1
vote
2answers
135 views
Parse/Refactor C# via C# code
Is there any libraries from Microsoft or from Mono project that allow you to do sweeping changes on a C# code base via code? Anything in Cecil for this? I think Cecil would only allow you to work at ...
2
votes
1answer
366 views
Group a collection and return a Dictionary
I've written a method that takes a collection of items (price items - each item has an amount and a code) and groups them by code then returns an IDictionary where the key is the code of the item and ...
3
votes
1answer
152 views
User Control refactoring
This is a performance issue and also a refactoring problem.
I have a .NET user control (UCA.ascx)... which in turn uses 5 other User Controls internally.
Each of these user controls run into greater ...
0
votes
1answer
144 views
Refactoring Legacy Code for Unit Testing - Please Critique [closed]
I'm trying to refactor some code for Unit Testing and was hoping you could critique it.
This is the original method.
public class MyNonRefactoredClass
{
public List<MyClass> DoSomething()
...
5
votes
1answer
250 views
Resharper Rename Fields
I've been tasked with making some significant modifications to a legacy codebase that was not written using our current code style conventions. The changes are extensive enough that I'm doing some ...
4
votes
2answers
175 views
Refactoring shared code across multiple solutions
I have several Visual Studio solutions which shares a common project.
Example:
Solution of the common project
- Common project
Solution A
- Common project
- Custom project A
Solution B
- ...
1
vote
3answers
231 views
Finding the method in ASP.NET back-end
I'm refactoring some piece of... code, part of huge, complex .Net project. There is a piece of code like
<asp:Button ID="btnSave" runat="server" CommandName="Update" ... />
Notice the command ...
2
votes
2answers
203 views
How to go about refactoring/rebuilding a WPF application developed in WinForms style
I am working on a Wpfapplication developed in a WinForms style; I am saying this because application consists -
UserControls having more then 2000 lines of code (without any regions, members ...
0
votes
2answers
116 views
Open source tool to find unused public/private methods [closed]
I'm looking for an open source tool to show me the uncalled public/private methods of my solution.
The idea is to have a list of uncalled methods and let the developer chose to delete or let it as it ...
7
votes
6answers
367 views
Best practice for refactoring methods [closed]
I am wondering what would be the the best practice for refactoring code that looks like this:
Where should the exit criteria should be set and what is the best practice
private static bool Foo()
...
2
votes
5answers
98 views
Automating complex refactoring tasks
I have the situation that the same repeating refactoring tasks have to be done for a huge number of methods in my code.
For example imagine a interface with 100 methods, each of them has one or more ...
0
votes
2answers
140 views
Event Aggregator: need help modifying solution
I'm attempting to design an event aggregator for my application. (I am new to the design pattern, so I may not fully understand it yet).
Firstly, I have created a solution already that is somewhat an ...
3
votes
2answers
577 views
Smart refactoring using Roslyn CTP [closed]
I'm running some analysis tools on our build like StyleCop/FXCop.
What i'd like to achieve is auto-correct some of the warnings produced by these.
Do you think this can be done using the Roslyn CTP? ...
0
votes
3answers
59 views
Refactor related conditionals without combining
I have a pixel/location, we'll call it 4,4 on a graph.
I'm attempting to refactor a function that checks to see if pixels around it, meet a certain criteria, in all 8 directions (diagonally, ...
3
votes
3answers
89 views
How to simplify the code for settings values passed between a main and child forms
I have a class that stores settings for my app. It is instantiated when the app. runs and saved when the app. closes.
public class Settings
{
public bool showPrivacyPageOnBlogs;
public bool ...
1
vote
6answers
216 views
Is there a C# refactoring tool that can convert all declarations to fully qualified types?
Here's what needs to be done.
Let's imagine you have the following piece of C# code:
private Int32 DoSomething(Int32 number, String message)
{
StringBuilder stringBuilder = null;
Regex ...
4
votes
5answers
578 views
Unit testing code which calls static methods
I've read most SO related questions ( here, here and there).
The last question proposes four alternatives to make code which calls static methods unit-testable.
I want to ask about my particular ...
0
votes
4answers
153 views
How to refactor these methods to avoid duplication?
In our code base
public ActionResult Copy(string id, string targetId)
{
//lot of similar code
Copy(sourcePageRef, destinationPageRef);
...
