Tagged Questions

3
votes
2answers
157 views

How to programmatically determine param name when constructing an ArgumentException?

When constructing an ArgumentException, a couple of the overloads take a string that is the invalid argument's parameter name. I figure it would be nice to not have to remember to update this ctor ...
2
votes
1answer
93 views

Ajax Design/Refactoring help when rendering new content - like list items and divs

I consistently come across this code smell where I am duplicating markup, and I'm not really sure how to fix it. Here's a typical use case scenario: Let's say we'd like to post comments to some kind ...
0
votes
1answer
69 views

How can i factor out this code to avoid code duplication in C#?

I have the following code: private int AllFeb(Forecast f, IRepository repository) { return All(f, repository, f.Feb); } private int AllJan(Forecast f, IRepository repository) { return All(f, ...