Example #1
0
        /// <summary>
        /// Returns a new instance that otherwise is a copy of the original one.
        /// </summary>
        /// <returns>A new instance.</returns>
        public SchemaEntry Clone()
        {
            var cloned = new SchemaEntry();

            OnClone(cloned); return(cloned);
        }
Example #2
0
		/// <summary>
		/// Returns a new instance that otherwise is a copy of the original one.
		/// </summary>
		/// <returns>A new instance.</returns>
		public SchemaEntry Clone()
		{
			var cloned = new SchemaEntry();
			OnClone(cloned); return cloned;
		}