A better name for INeedSomething... ?

Posted by Daniel Severin on Stack Overflow See other posts from Stack Overflow or by Daniel Severin
Published on 2011-05-09T07:34:49Z Indexed on 2011/06/21 8:22 UTC
Read the original article Hit count: 183

I was trying pick a name for an interface through which I can pass something into an object like:

  • If the object is INeedX then SetX(some x) method will be called;
  • If the object is INeedY then SetY(some y) method will be called;
  • and so on. (funny as hell, I know :) )

I try to find a different name for this kind of interfaces but I can't figure this out.

Does anybody have an idea how to name the INeedSomething interface ?

© Stack Overflow or respective owner

Related posts about c#

Related posts about interface