Tagged Questions
10
votes
2answers
181 views
Reflexive type parameter constraints: X<T> where T : X<T> ‒ any simpler alternatives?
Every so often I am making a simple interface more complicated by adding a self-referencing ("reflexive") type parameter constraint to it. For example, I might turn this:
interface ICloneable
{
...
3
votes
1answer
652 views
Is there a better way to self reference a type?
I'm finding lately a lot of code smells related to referencing generic classes in C#. My gripes especially apply to those classes which inherit from DependencyObject and contain DependencyProperties.
...