MW211 EXIT

devlog
C#/数値(自然数)のチェック
2019年02月11日
┌──────────────────────────────────────┐
│int 数値化;                                                                 │
│if ((!int.TryParse(変数.ToString(), out 数値化)) || (数値化 <= 0)) {        │
│    MessageBox.Show("数値(自然数)を入力してください",                       │
│                    "入力エラー",                                           │
│                    MessageBoxButtons.OK,                                   │
│                    MessageBoxIcon.Exclamation);                            │
│}                                                                           │
└──────────────────────────────────────┘
分類:VC#