Code:
class Product { public String Productname; public String Brand; public String Price; public Product(String productname, String brand, String price) { Productname = productname; Brand = brand; Price = price; } }
'WindowsFormsAp plication1.Prod uct' does not contain a constructor that takes '0' arguments
its probably a stupid error i am making but any help would be appreciated :)
Comment