using System; using System.ComponentModel; using System.Globalization; using System.Runtime.InteropServices; namespace Vanara { /// Managed instance of the OLE DATE type. [StructLayout(LayoutKind.Sequential), Serializable] [TypeConverter(typeof(DATETypeConverter))] public struct DATE : IEquatable, IComparable, IEquatable, IComparable, IConvertible, IComparable { private double value; /// Initializes a new instance of the struct. /// The value. public DATE(DateTime value) => this.value = value.ToOADate(); /// Gets the value. /// The value. public DateTime Value => DateTime.FromOADate(value); /// Performs an implicit conversion from to . /// The value. /// The result of the conversion. public static implicit operator DATE(DateTime value) => new DATE(value); /// Performs an explicit conversion from to . /// The value. /// The result of the conversion. public static explicit operator DateTime(DATE value) => value.Value; /// Indicates whether two instances are not equal. /// The first integral size to compare. /// The second integral size to compare. /// /// if the value of is not equal to the value of ; otherwise, . /// public static bool operator !=(DATE s1, DATE s2) => !s1.Equals(s2); /// Indicates whether a specified is less than another specified . /// The first integral size to compare. /// The second integral size to compare. /// /// if the value of is less than the value of ; otherwise, . /// public static bool operator <(DATE s1, DATE s2) => s1.CompareTo(s2) < 0; /// Indicates whether a specified is less than or equal to another specified . /// The first integral size to compare. /// The second integral size to compare. /// /// if the value of is less than or equal to the value of ; /// otherwise, . /// public static bool operator <=(DATE s1, DATE s2) => s1.CompareTo(s2) <= 0; /// Indicates whether two instances are equal. /// The first integral size to compare. /// The second integral size to compare. /// /// if the value of is equal to the value of ; otherwise, . /// public static bool operator ==(DATE s1, DATE s2) => s1.Equals(s2); /// Indicates whether a specified is greater than another specified . /// The first integral size to compare. /// The second integral size to compare. /// /// if the value of is greater than the value of ; otherwise, . /// public static bool operator >(DATE s1, DATE s2) => s1.CompareTo(s2) > 0; /// Indicates whether a specified is greater than or equal to another specified . /// The first integral size to compare. /// The second integral size to compare. /// /// if the value of is greater than or equal to the value of ; /// otherwise, . /// public static bool operator >=(DATE s1, DATE s2) => s1.CompareTo(s2) >= 0; /// public int CompareTo(DATE other) => Value.CompareTo(other.Value); /// public int CompareTo(DateTime other) => Value.CompareTo(other); /// public override bool Equals(object obj) => obj is DATE s ? Equals(s) : (obj is DateTime b ? Value.Equals(b) : Value.Equals(obj)); /// public bool Equals(DATE other) => Value.Equals(other.Value); /// public bool Equals(DateTime other) => Value.Equals(other); /// public override int GetHashCode() => Value.GetHashCode(); /// public TypeCode GetTypeCode() => Value.GetTypeCode(); /// public override string ToString() => Value.ToString(); /// public string ToString(IFormatProvider provider) => Value.ToString(provider); /// int IComparable.CompareTo(object obj) => Value.CompareTo(Convert.ChangeType(obj, typeof(DateTime))); /// bool IConvertible.ToBoolean(IFormatProvider provider) => ((IConvertible)Value).ToBoolean(provider); /// byte IConvertible.ToByte(IFormatProvider provider) => ((IConvertible)Value).ToByte(provider); /// char IConvertible.ToChar(IFormatProvider provider) => ((IConvertible)Value).ToChar(provider); /// DateTime IConvertible.ToDateTime(IFormatProvider provider) => ((IConvertible)Value).ToDateTime(provider); /// decimal IConvertible.ToDecimal(IFormatProvider provider) => ((IConvertible)Value).ToDecimal(provider); /// double IConvertible.ToDouble(IFormatProvider provider) => ((IConvertible)Value).ToDouble(provider); /// short IConvertible.ToInt16(IFormatProvider provider) => ((IConvertible)Value).ToInt16(provider); /// int IConvertible.ToInt32(IFormatProvider provider) => ((IConvertible)Value).ToInt32(provider); /// long IConvertible.ToInt64(IFormatProvider provider) => ((IConvertible)Value).ToInt64(provider); /// sbyte IConvertible.ToSByte(IFormatProvider provider) => ((IConvertible)Value).ToSByte(provider); /// float IConvertible.ToSingle(IFormatProvider provider) => ((IConvertible)Value).ToSingle(provider); /// object IConvertible.ToType(Type conversionType, IFormatProvider provider) => ((IConvertible)Value).ToBoolean(provider); /// ushort IConvertible.ToUInt16(IFormatProvider provider) => ((IConvertible)Value).ToUInt16(provider); /// uint IConvertible.ToUInt32(IFormatProvider provider) => ((IConvertible)Value).ToUInt32(provider); /// ulong IConvertible.ToUInt64(IFormatProvider provider) => ((IConvertible)Value).ToUInt64(provider); internal class DATETypeConverter : DecimalConverter { public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (!(value is DATE b)) throw new ArgumentException(); return base.ConvertTo(context, culture, b.Value, destinationType); } public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) => new DATE((DateTime)base.ConvertFrom(context, culture, value)); } } }