Chronicle.Timestamp.Equals C# (CSharp) Method

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
        public override bool Equals(object obj)
        {
            var ts = obj as Timestamp;
            if (ts == null) return false;

            return ts.DateCreated == DateCreated
                && ts.DateModified == DateModified;
        }