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