internal static bool EquivalentTimestamps()

in src/Utilities.cs [279:291]


        internal static bool EquivalentTimestamps(DateTime? lhs, DateTime? rhs)
        {
            if (lhs.HasValue != rhs.HasValue)
            {
                return false;
            }
            if (!lhs.HasValue && !rhs.HasValue)
            {
                return true;
            }

            return (lhs.Value == rhs.Value);
        }