BuilderPattern.Robot.SetRobotLegs C# (CSharp) Метод

SetRobotLegs() публичный Метод

public SetRobotLegs ( string legs ) : void
legs string
Результат void
        public void SetRobotLegs(string legs)
        {
            this.legs = legs;
        }

Usage Example

Пример #1
0
 public void BuildRobotLegs()
 {
     robot.SetRobotLegs("Robot legs are simply wheels.");
 }