I have looked for a good example of a Builder pattern (in C#), but cannot find one either because I don\'t understand the Builder pattern o
Mostly the call of a BuilderPattern looks like this:
Car car = new CarBuilder().withDoors(4).withColor("red").withABS(true).build();