Tagged Questions

13
votes
5answers
7k views

How to do template specialization in C#

How would you do specialization in C#? I'll pose a problem. You have a template type, you have no idea what it is. But you do know if its derived from XYZ you want to call .alternativeFunc(). A great ...