using System; using System.Collections.Generic; namespace ConsoleApplication1 { class Product { public string Name { get; private set; } public decimal Price { get; private set; } public Product(string name, decimal price) { Name = name; Price = pric…