c# 获取此时此刻的年月日
时间: 2024-01-17 14:04:43 浏览: 66
要获取当前的年、月和日,可以使用`DateTime.Now`属性。以下是一个示例代码:
```csharp
// 获取当前日期和时间
DateTime now = DateTime.Now;
// 获取年、月和日
int year = now.Year;
int month = now.Month;
int day = now.Day;
// 输出结果
Console.WriteLine("Year: " + year);
Console.WriteLine("Month: " + month);
Console.WriteLine("Day: " + day);
```
在上面的示例中,我们使用`DateTime.Now`获取当前的日期和时间。然后,通过访问`now.Year`、`now.Month`和`now.Day`属性,分别获取当前的年、月和日。最后,通过`Console.WriteLine`输出结果。
运行上述代码,你将得到当前的年、月和日的信息。请注意,结果将根据你运行代码的时间而变化。
阅读全文