Tagged Questions
3
votes
1answer
234 views
Create a delegate of a generic function
I'm writing some unit tests and I have a lot of functions of the form
public void SomeTestHelperMethod<TKey, TValue>(TKey key, TValue value)
which I'm calling repeatedly with various ...
1
vote
1answer
57 views
Negative effects of using a generic function like this?
My question here is, what are the negative effects of using a generic function such as this? Calling this function does work, and in a test console module, it compiles perfectly fine. I do know this ...