Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 200 Bytes

MA0113.md

File metadata and controls

9 lines (6 loc) · 200 Bytes

MA0113 - Use DateTime.UnixEpoch

Use System.DateTime.UnixEpoch instead of re-implementing the logic.

_ = new DateTime(1970, 1, 1); // report diagnostic

_ = DateTime.UnixEpoch; // ok