1
1

More than 3 years have passed since last update.

文字列から日付型に変換できるか判定したい

Last updated at Posted at 2019-10-08
var hiduke = "2019/12/31";
Datetime dt;

 if (!DateTime.TryParse(hiduke, out dt))
            {
                // {0}行目:日付を入力して下さい。
                throw new BusinessException("003508", Row);
            }

hidukeが変換できるかどうか
Date型に変換された値はdtに入る。
出来なかったらBusinessExceptionを通る。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1