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 ...