How to understand this generic class defination with such type parameters constrain define in C#

Viewed 23
class CustomClassA<T> where T : CustomClassA<T>

The parameter type constrain is the class itself. I wonder why this does not lead to recursive definition?

0 Answers
Related