0
我想刪除文本框格式。刪除文本框格式化
我格式化與下面的代碼
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);
撤消格式,但我無法獲得整數值
你可以顯示可能在你的文本框中的示例文本? –
'我無法得到整數值'解釋發生了什麼!例外?結果無效? –