BuilderPattern.Robot.SetRobotLegs C# (CSharp) Method

SetRobotLegs() public method

public SetRobotLegs ( string legs ) : void
legs string
return void
        public void SetRobotLegs(string legs)
        {
            this.legs = legs;
        }

Usage Example

Exemplo n.º 1
0
 public void BuildRobotLegs()
 {
     robot.SetRobotLegs("Robot legs are simply wheels.");
 }