コード例 #1
0
        /// <summary>
        /// Creates a clone of this instance.
        /// </summary>
        /// <returns>
        /// A new object that is a copy of this instance.
        /// </returns>
        public object Clone()
        {
            ClosingCommentConfiguration clone = new ClosingCommentConfiguration();

            clone._enabled = _enabled;
            clone._format  = _format;

            return(clone);
        }
コード例 #2
0
        /// <summary>
        /// Creates a clone of this instance.
        /// </summary>
        /// <returns>
        /// A new object that is a copy of this instance.
        /// </returns>
        public object Clone()
        {
            ClosingCommentConfiguration clone = new ClosingCommentConfiguration();

            clone._enabled = _enabled;
            clone._format = _format;

            return clone;
        }