我想删除文本框格式。
我使用以下代码格式化文本框
if (!string.IsNullOrEmpty(txtBSalary.Text))
{
CultureInfo culture = new CultureInfo("en-US");
int valueBefore = Int32.Parse(txtBSalary.Text, NumberStyles.AllowThousands);
txtBSalary.Text = String.Format(culture, "{0:N}", valueBefore);
txtBSalary.Select(txtBSalary.Text.Length, 0);
}
我尝试使用以下代码撤消格式
int integerValue = Int32.Parse(txtBSalary.Text, NumberStyles.AllowThousands);
但我无法获得整数值