C#C
C#3y ago
FSHF

clone

Instead of removing last number i would like to clone, how?
        private void btnpocl(object sender, EventArgs e)
        {

            if (ccal.Length > 0)
            {
                ccal = ccal.Remove(ccal.Length - 1, 1);
            }

            txtbout.Text = ccal;
        }
Was this page helpful?