rickyah / ini-parser

Read/Write an INI file the easy way!
MIT License
972 stars 241 forks source link

Documented defaults don't match actual defaults (AllowCreateSectionsOnFly) #227

Open fraganator opened 3 years ago

fraganator commented 3 years ago

The defaults for IniParserConfiguration listed in the Configuring Parser Behavior wiki page, and the defaults documented in the code don't match the actual defaults in IniParserConfiguration.cs.

Differences are below: Name Wiki Doc Code Doc Actual Default
AllowCreateSectionsOnFly false false true
CommentString # ; ;

The wiki also refers to old variable names with String suffix rather than Char suffix.