using System.Collections.Generic;
public static void Main()
SharePrices s = new SharePrices(){ theDate = DateTime.Now, sharePrice = 10 };
var newList = new List<SharePrices>();
newList.ForEach(delegate(string s)
public DateTime theDate { get; set; }
public decimal sharePrice { get; set; }