次のテキストボックスをチェックしています
- 入力がない場合
- 入力が 0 ~ 100 の場合
- 入力が数値以外の文字列の場合
コード -
if (this.BugCompPct.Text == String.Empty)
else if (Convert.ToInt32(this.BugCompPct.Text) > 100 | Convert.ToInt32(this.BugCompPct.Text) < 0)
//Not sure about checking the last if
整数以外の文字列をチェックする if 条件として何を置くことができますか? 入力のみを整数にして、それ以外は何もしたくない
ありがとう