Product.Product C# (CSharp) Méthode

Product() public méthode

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