C# Multi-Type Generic Constraints

Today, I wanted to place constraints on a multi-type generic. Here is my starting point.public class MultiTypeGeneric<A,B>I wanted to put a constraint on A and B. I did several Google searches to find the syntax. There were suggestions, but none of them seemed to work. Here is the solution that finally worked.public class MultiTypeGeneric<A,B>where A : IComparablewhere B : IComparable

Leave a Reply