IniParser.Model.Configuration.IniParserConfiguration.IniParserConfiguration C# (CSharp) Method

IniParserConfiguration() public method

Copy ctor.
public IniParserConfiguration ( IniParserConfiguration ori ) : System
ori IniParserConfiguration /// Original instance to be copied. ///
return System
        public IniParserConfiguration(IniParserConfiguration ori)
        {
            AllowDuplicateKeys = ori.AllowDuplicateKeys;
            OverrideDuplicateKeys = ori.OverrideDuplicateKeys;
            AllowDuplicateSections = ori.AllowDuplicateSections;
            AllowKeysWithoutSection = ori.AllowKeysWithoutSection;

            SectionStartChar = ori.SectionStartChar;
            SectionEndChar = ori.SectionEndChar;
            CommentString = ori.CommentString;
            ThrowExceptionsOnError = ori.ThrowExceptionsOnError;

              // Regex values should recreate themselves.
        }

Same methods

IniParserConfiguration::IniParserConfiguration ( ) : System