Cem Dervis

Results 11 comments of Cem Dervis

Hi, I couldn't reproduce the exception; the object is constructed with SETTING's value being the empty string. Please verify in [Setting.cs](https://github.com/cemdervis/SharpConfig/blob/master/Src/Setting.cs#L504) whether obj is the empty string or null.

Sure thing. So reading from the title, you expect the string conversion to return a null-string? Just to be clear. At this moment, an empty setting value will let the...

Yes, the naming is unfortunate. However, I won't drastically change the converter API until the next major release. So for the time being, we'd have to stick with the magic...

I see. So you're able to work around this issue for now?

Noted. Thanks for reporting these issues by the way.

SharpConfig expects a '=' by default, because that's the format of cfg/ini files. This behavior is implemented [here](https://github.com/cemdervis/SharpConfig/blob/master/Src/ConfigurationReader.cs#L239) (and in line 244). In order to parse your config, the call...

This is going to be fixed with the next version.

Hi @CSLVRlab-PW / Peter, this is unfortunately a feature that's missing in SharpConfig. It can be fixed by improving the parser to correctly read quoted strings across multiple lines. The...

You're welcome. Referencing the text sounds like a good idea. By the looks of it, your config files might become too cluttered anyway once you include more text in them....