/// <summary>
 /// Initializes a new instance of the <see cref="RedBlueGames.BulkRename.ChangeCaseOperation"/> class by copying another.
 /// </summary>
 /// <param name="operationToCopy">Operation to copy.</param>
 public ChangeCaseOperation(ChangeCaseOperation operationToCopy)
 {
     this.ToUpper = operationToCopy.ToUpper;
 }
        /// <summary>
        /// Clone this instance.
        /// </summary>
        /// <returns>A clone of this instance</returns>
        public override BaseRenameOperation Clone()
        {
            var clone = new ChangeCaseOperation(this);

            return(clone);
        }