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.
テキストボックスに次のようなテキストが含まれています
18/1/2013
このテキストをTypedatetimeと見なします。特定のコードを使ってみました
Convert.ToDateTime(DateTime.ParseExact(TxtStartDate.Text.Trim(), "dd/MM/yyyy", null));
しかし、それは例外をスローします
String was not recognized as a valid DateTime.
使用する
var date = DateTime.ParseExact(TxtStartDate.Text.Trim(), "d/M/yyyy", System.Globalization.CultureInfo.InvariantCulture);