Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようにテキストフィールドに日付がある場合2012-09-27T11:41:16:587Z
ParseExactをどのように実行しますか?
私はDateTimeconvertedDate= DateTime.ParseExact(date、 "yyyy-MM-dd HH:mm:ss"、System.Globalization.CultureInfo.InvariantCulture);に近いと思います。しかし、それはエラーになります...
奇妙なことに誰もこれに答えませんでした。これは機能します:
DateTime.ParseExact(date, @"yyyy-MM-dd\THH:mm:ss:fff\Z", CultureInfo.InvariantCulture);
フォーマット文字列と比較すると、唯一の違いは"fff"、ミリ秒単位で含め、文字列にTとZの文字を入れて処理すること@"\T"です。@"\Z"date
"fff"
@"\T"
@"\Z"
date