Tagged Questions

4
votes
3answers
74 views

Is there a tool to finding redundancy through out a set of library code (.net C#)?

Is there a tool to finding redundancy through out a set of library code (.net C#)? The problem is I have a number of .NET libraries, but they tend to have a lot of similar/duplicate "helper" or ...
3
votes
2answers
158 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 ...