Example #1
0
 private void WriteKeys(IniKeyCollection keys)
 {
     foreach (IniKey key in keys)
         this.WriteItem(key,
             // E.g. "   KeyName = KeyValue"
             new String(' ', key.LeftIndentation) +
             key.Name +
             ((this.options.KeySpaceAroundDelimiter) ? " " : string.Empty) +
             (char)this.options.KeyDelimiter +
             ((this.options.KeySpaceAroundDelimiter) ? " " : string.Empty) +
             key.Value);
 }