Page 1 of 1

Buged Xml2obj

Posted: 03 Nov 2010, 17:08
by azchohfi
Just found an other bug.
File SFSObjectSerializer, on function

Code: Select all

private void Xml2obj(XElement xmlNode, SFSObject ao, int depth)

The foreach is wrong. Now it's like this:

Code: Select all

foreach (XElement subNode in xmlNode.Descendants())

But it should be:

Code: Select all

foreach (XElement subNode in xmlNode.Nodes())


Now it's working normaly for me.