13 lines
314 B
Plaintext
13 lines
314 B
Plaintext
== How to fix it
|
|
|
|
Instead of `DateTime.Now` use any of the following:
|
|
|
|
* `DateTime.UtcNow`,
|
|
* `DateTimeOffSet.Now` (as it contains offset information)
|
|
* `DateTimeOffSet.UtcNow`
|
|
|
|
Instead of `DateTime.Today` use any of the following:
|
|
|
|
* `DateTime.UtcNow.Date`,
|
|
* `DateOnly.FromDateTime(DateTime.UtcNow)` (.NET 6.0+)
|