If think the author wanted to make a sting like this "value1, value2"
to be split in 2 parts but the StringHelper.Split method splits it in
3 parts because the method splits on characters and not on strings. So
I changed the lines to:
string[] splits = nodeText.Split(new[] {", "},
StringSplitOptions.RemoveEmptyEntries);
and the error went away.
I also saw a similar thing in 'IncrementGenerator.cs', it might have
to be changed there too.
Bas
note: in this days the server is down for maintenance, so wait same
days when it will be up to send your bug and bugfix