예제 #1
0
        // adds tip to price
        private void AddTipToPrice(string tip, string fullPrice)
        {
            string displayNew = bill.AddTipToPrice(tip, fullPrice).ToString("0.00");

            lbl_TotalPrice.Text = displayNew;
        }