Product.Product C# (CSharp) Method

Product() public method

public Product ( string name, int weight, int cost ) : System
name string
weight int
cost int
return System
    public Product(string name, int weight, int cost)
        : this()
    {
        this.Name = name;
        this.Weight = weight;
        this.Cost = cost;
    }
Product