using System.Collections.Generic;
public static List<Product> ProductInventory = new List<Product>();
public static void Main()
Inventory inv = new Inventory();
Console.WriteLine(ProductInventory[0]);
public string Type{get;set;}
public double Price{get;set;}
public string Descript{get;set;}
public Product(string type,string description,double price)
Console.WriteLine("Type in the type.");
string type = Console.ReadLine();
Console.WriteLine("Type in the description.");
string desc = Console.ReadLine();
Console.WriteLine("Type in the price.");
double price = Double.Parse(Console.ReadLine());
ProductInventory.Add(new Product(type,desc,price));