C# - Name the Design Pattern
Posted
by nettguy
on Stack Overflow
See other posts from Stack Overflow
or by nettguy
Published on 2010-04-13T05:14:48Z
Indexed on
2010/04/13
5:22 UTC
Read the original article
Hit count: 422
c#
|design-patterns
Using Fluent Interface design here
if i call something like
dog.Train("Running").Train("Eating").Do("Running").Do("Eating");
what is the name of this pattern ? is it chain-of-responsibility or there any specific design pattern name associated with it?
© Stack Overflow or respective owner