gpt4 book ai didi

C# ToShortDateString

转载 作者:行者123 更新时间:2023-11-30 21:08:29 29 4
gpt4 key购买 nike

我用vb写了这段代码:

expireDate = (DateTime.Parse(decal.DecalExpireDate).ToShortDateString).ToString

现在我尝试用 C# 编写相同的代码,这就是我想出的:

expireDate = decal.DecalExpireDate.ToString();
expireDate = DateTime.Parse(expireDate).ToShortDateString();

有谁知道如何将 C# 代码简化为一行两行。困扰我的是我可以用 vb 在一行中完成,但不能在 c# 中完成。

decal.DecalExpireDate 是我使用 linq 检索的 smallDateTime。expireDate 是我在函数中返回的字符串

最佳答案

expireDate = DateTime.Parse(decal.DecalExpireDate.ToShortDateString()).ToString();

或者,更好的是,

expireDate = decal.DecalExpireDate.Date.ToString();

关于C# ToShortDateString,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9639569/

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