I have the following extension method which asserts that a property (Id) contains a specified attribute (TV):
public static void ShouldHave<T, TV, TT>(this T obj, Expression<Func<T, TT>> exp) {...}
The method can be called like this:
MyDto myDto = new MyDto();
myDto.ShouldHave<MyDto, RequiredAttribute, int>(x => x.Id);
Compiles just fine. I was wondering if it is possible to remove T and TT from the method signature. T because ShouldHave is called on T why it shouldn't be necessary to specify it explicitly. And TT is the type of the property referenced in the expression (x.Id).
TV(the second generic parameter)? – Jeff Mercado Jun 14 '11 at 10:51TandTT) are used in the signature.TVis completely unnecessary in this context. – Jeff Mercado Jun 14 '11 at 11:02