コード例 #1
0
ファイル: Task_2_1.cs プロジェクト: Bohmel/laba04_21-22
        public AbstractCar GetProduct()
        {
            AbstractCar result = this.product;

            this.Reset();

            return(result);
        }
コード例 #2
0
ファイル: Task_2_1.cs プロジェクト: Bohmel/laba04_21-22
 public void Reset()
 {
     this.product = new AbstractCar();
 }