How should I handle exceptions for invalid generic type arguments?
Should I make my own class? InvalidOperationException or ArgumentException? I’m not too sure on how to ‘handle’ this…
How should I handle exceptions for invalid generic type arguments? Should I make my
Share
I would let the compiler do it for me with contraints on the type parameters.