BuilderPattern.Robot.SetRobotTorso C# (CSharp) Method

SetRobotTorso() public method

public SetRobotTorso ( string torso ) : void
torso string
return void
        public void SetRobotTorso(string torso)
        {
            this.torso = torso;
        }

Usage Example

Exemplo n.º 1
0
 public void BuildRobotTorso()
 {
     robot.SetRobotTorso("Robot torso is a round cylinder shape made of steel");
 }