Search Results

1
vote

In C# (or any language) what is/are your favourite way of removing repetition?

"cut and paste with minor tweaks here and there" is the kind of code repetition I usually solve with an entirely non-exotic approach- Take the similar chunk of code, extract it out to a seperate m …
0
votes

What’s the best way to resolve a combinatorial explosion of interactions?

Not quite an answer, but to me this fairly screams "properties pattern". There's a well-known yegge rant about this, I think it'll offer you some decent pointers. …
0
votes

C# 3.0 - How can I order a list by week name starting on monday?

Clarification: By "each of them has a weekday registered", how is the week day represented? Date Object? Enum? String? …