c# Programming Glossary: fluentperson
Fluent interfaces and inheritance in C# http://stackoverflow.com/questions/2278781/fluent-interfaces-and-inheritance-in-c-sharp example. There is a base class with fluent interface class FluentPerson private string _FirstName String.Empty private string _LastName.. String.Empty private string _LastName String.Empty public FluentPerson WithFirstName string firstName _FirstName firstName return.. string firstName _FirstName firstName return this public FluentPerson WithLastName string lastName _LastName lastName return this..
|