Ejemplo n.º 1
0
        public object Clone()
        {
            var br = new BuildingRequirement();

            br.name   = this.name;
            br.amount = this.amount;
            return(br);
        }
Ejemplo n.º 2
0
        public object Clone()
        {
            var br = new BuildingRequirement {
                name   = this.name,
                amount = this.amount
            };

            return(br);
        }