بهبودهای زمان و تاریخ در NET 6.
200, OK
https://devblogs.microsoft.com/dotnet/date-time-and-time-zone-enhancements-in-net-6/ icon

In this blog post, I’m going to cover the following topics:

For even more details, you can also refer to dotnet/runtime#45318 on GitHub. 

بهبودهای زمان و تاریخ در NET 6.
نگاهی به نوع‌های جدید DateOnly و TimeOnly در NET 6.
200, OK
https://www.stevejgordon.co.uk/using-dateonly-and-timeonly-in-dotnet-6 icon

In .NET 6 (preview 4), two long-awaited types have been introduced as part of the core library. DateOnly and TimeOnly allow developers to represent either the date or time portion of a DateTime. These two new types are structs (value types) and may be used when your code deals with date or time concepts independently. Both types can be found in the System namespace. Using these new types may align well with how databases allow similar data to be represented. Specifically, these types align well with the SQL Server date and time data types. 

نگاهی به نوع‌های جدید DateOnly و TimeOnly در NET 6.