Tagged Questions

10
votes
2answers
180 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
649 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. ...
1
vote
1answer
131 views

Self-reference object in chained method calls

How do you reference the chained method's object in that same method's arguments. Let's say you have a number of chained method calls that trim/substring a string like so: ...
1
vote
0answers
82 views

SubSonic and self-referencing table

We are having some problems with SubSonic's ActiveRecord template and a self-referencing table. We have a table, Category, that can contain sub-categories. The table contains a primary key (Id) and a ...
0
votes
1answer
42 views

Many to Many (self related) specific order entity framework

Hello I'm trying to do the impossible apparently. I need a self referenced table with a many to many relationship to itself that also has a specific order in c# entity framework (4.2) database ...
0
votes
2answers
373 views

Is there a way I can inline a function to an Action delegate and referenced it at the same time?

Is there a way I can inline the delegated task instead of separating it on another function? Original Code: private void ofdAttachment_FileOk(object sender, CancelEventArgs e) { ...