A datetime value that can represent a TOML
public record struct TomlDateTime(DateTimeOffset DateTime, int SecondPrecision, TomlDateTimeKind Kind) : IConvertible, IEquatable<TomlDateTime>
kind:method, kind:property, kind:ctor. Press Esc to clear.TomlDateTime(DateTime)Initializes a local-date-time TOML value from a DateTime.TomlDateTime(DateTimeOffset, Int32, TomlDateTimeKind)A datetime value that can represent a TOML - An offset DateTime with Zero offset or Number offset. - A local DateTime. - A local Date. - A local Time.TomlDateTime(Int32, Int32, Int32)Initializes a local-date TOML value from a date component.DateTimeThe datetime offset.KindThe kind of datetime offset.SecondPrecisionThe precision of milliseconds.GetFormatPrecision(Int32)Gets the string formatter for the specified precision.Implicit(DateTime to TomlDateTime)Converts a datetime to TomlDateTime.