在 C# 中转换 MySQL 的 DateTime
在这篇文章中,我们将探讨如何将 C# 中的 DateTime 对象转换为特定格式MySQL 所需的,即“1976-04-09 22:10:00”。
问题:
给定一个包含不同格式的日期值的字符串,我们需要将其转换为 MySQL 兼容的格式。
解决方案:
C# 中转换 DateTime 对象有多种方法:
<code class="csharp">string dateValue = "12-Apr-1976 22:10"; string formatForMySql = dateValue.ToString("yyyy-MM-dd HH:mm:ss");</code>
<code class="csharp">CultureInfo isoDateTimeFormat = CultureInfo.InvariantCulture.DateTimeFormat; dateValue.ToString(isoDateTimeFormat.SortableDateTimePattern); // "1976-04-12T22:10:00" dateValue.ToString(isoDateTimeFormat.UniversalSortableDateTimePattern); // "1976-04-12 22:10:00Z"</code>
这些方法允许您指定自定义日期和时间格式或使用与 MySQL 兼容的预定义 ISO 格式。
以上是如何在 C# 中为 MySQL 转换 DateTime 对象?的详细内容。更多信息请关注PHP中文网其他相关文章!