Пример #1
0
        protected override BasicNoteImpl CreateClone()
        {
            var n = new EvernoteNote(_id, _config, _hConfig);

            using (n.SuppressDirtyChanges())
            {
                n._internalTitle        = _internalTitle;
                n._text                 = _text;
                n._creationDate         = _creationDate;
                n._modificationDate     = _modificationDate;
                n._updateSequenceNumber = _updateSequenceNumber;
                return(n);
            }
        }