static void Main(string[] args) { order MyOrder = new order() { itemName = "Book", unitCost = 3.99, unitCount = 5 }; Console.WriteLine(MyOrder.OrderInformation()); }