整数の金額を検証するための最良の解決策は何でしょうか。
以下を考えています。
double value = Double.Parse(txtCubes.Text);
double wholeValue = Math.Round(value);
Console.WriteLine("You added " + wholeValue + " blocks of ice");
整数値が入力されていることを確認するより良い理由はありますか?
int 検証に比較バリデーターを使用できます
<asp:CompareValidator runat="server" Operator="DataTypeCheck" Type="Integer"
ControlToValidate="youTextBoxID" ErrorMessage="Value must be a whole number" />