判断txet.Text是否为数字

判断txet.Text是否为数字

private bool IsAccept()   
{       
    try
    {
        Decimal.Parse(txt1.Text);
        return true; <---这里要加一句
    }
    catch
    {
        MessageBox.Show("必须为数字!");  
        return false;
    }
}

你可能感兴趣的:(判断txet.Text是否为数字)