Exemple #1
0
        /// <summary>
        /// Makes a deep copy of the current instance to a new instance.
        /// </summary>
        /// <returns>New instance of PFExtractorOutputOptions object.</returns>
        public PFRandomOrdersDefinition Copy()
        {
            string xmlString = this.ToXmlString();
            PFRandomOrdersDefinition newInstance = PFRandomOrdersDefinition.LoadFromXmlString(xmlString);

            return(newInstance);
        }