Controls.Food.Food C# (CSharp) Method

Food() public method

public Food ( Food f ) : System
f Food
return System
        public Food(Food f)
        {
            this.name = f.name;
            this.price = f.price;
            this.imagepath = f.imagepath;
            this.sizes = f.sizes;
            this.amounts = f.amounts;
            this.options = f.options;
            this.altimagepath = f.altimagepath;
        }

Same methods

Food::Food ( string n, string i, ItemList s, ItemList a, ItemList o, double p, string alt = "" ) : System