http://plusd.itmedia.co.jp/pcuser/articles/0910/21/news017.html
“ここ”に注意 「新PCで行う“実移行作業”」編
Jesus Always Love you.
http://plusd.itmedia.co.jp/pcuser/articles/0910/21/news017.html
“ここ”に注意 「新PCで行う“実移行作業”」編
テモテへの手紙 第二
4:2 みことばを宣べ伝えなさい。時が良くても悪くてもしっかりやりなさい。寛容を尽くし、絶えず教えながら、責め、戒め、また勧めなさい。
4:2 Preach the word; be instant in season, out of season; reprove, rebuke, exhort with all long suffering and doctrine.
string str = “2009/10/8”;
DateTime dt;
//DateTimeに変換できるかチェックする
if (DateTime.TryParse(str, out dt))
{ //日付け変換可能の場合の処理
Console.WriteLine(“{0}はDateTimeに変換できます。”, str);
}
else
{ //日付け変換できない場合の処理
Console.WriteLine(“{0}はDateTimeに変換できません。”, str);
}