Is there an example of the full builder pattern in the .NET base class library? I'm looking for something that has an actual director and multiple concrete builders.
|
|
|||
|
|
|
|
I'm far from an expert in this area, but I think that DbCommandBuilder and its inheriting classes (OdbcCommandBuilder, OleDbCommandBuilder, SqlCommandBuilder) might be an example...if it's OK that the abstract builder base class also serves as the director. The various concrete classes delegate to their base class, which then calls methods like these (per Reflector):
This fulfills some of the requirements to be a builder:
But there's not a separate class serving as the director; in effect, the |
||
|
|
|
|
Multiple concrete builders? Not that I know of unless you count
|
||||
|
