gpt4 book ai didi

c# - 如何将日期和时间分开?

转载 作者:行者123 更新时间:2023-11-30 13:11:57 25 4
gpt4 key购买 nike

我在 mysql 数据库列中有一个日期时间列,我需要在单独的日期和时间文本框中显示它。

我在数据库中的日期时间格式是 2014-12-24 17:23:35。我想要:

Date : 2014-12-24  
Time : 17:23:35

我如何在 C# 中做到这一点?

最佳答案

DateTime dtValue;  // load your date & time into this variable
TextBox1.Text = dtValue.ToString("yyyy-MM-dd");
TextBox2.Text = dtValue.ToString("HH:mm:ss");

关于c# - 如何将日期和时间分开?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27652582/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com