Skip to content

Commit 873334b

Browse files
committed
Fixed a bug with reading XML documents with string lists
1 parent e4dd7a1 commit 873334b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/SerializableStringList.cs

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public SerializableStringList(string str)
3131
public void ReadXml(XmlReader reader)
3232
{
3333
Items = Parse(reader.ReadString());
34+
reader.ReadEndElement();
3435
}
3536

3637
private IList<string> Parse(string value)

0 commit comments

Comments
 (0)