vote up 0 vote down star
1

Here is the code:

    [XmlRoot("Foo")]
    class Foo
    {
        [XmlElement("name")]
        string name;
    }

    [XmlRoot("FooContainer")]
    class FooContainer
    {
        [XmlElement("container")]
        List<List<Foo>> lst { get; set; }
    }

    XmlSerializer s = new XmlSerializer(typeof(FooContainer)); -->Can't pass through this.

Complains about not being able to implicitly cast it blah blah blah,

Anyone can tell what is wrong with this code?

flag

63% accept rate

2 Answers

vote up 1 vote down check

Foo and FooContainer need to be public. Other than that it worked fine for me. Had to flesh out the code a bit, but his works ...

class Program
{
    static void Main(string[] args)
    {
        XmlSerializer s = new XmlSerializer(typeof(FooContainer));

        var str = new StringWriter();
        var fc  = new FooContainer();

        var lst = new List<Foo>() { new Foo(), new Foo(), new Foo() };

        fc.lst.Add( lst );

        s.Serialize(str, fc);
    }
}

[XmlRoot("Foo")]    
public class Foo    {        
    [XmlElement("name")]        
    public string name = String.Empty;    }    

[XmlRoot("FooContainer")]    
public class FooContainer    {

    public List<List<Foo>> _lst = new List<List<Foo>>();
    public FooContainer()
    {

    }

    [XmlArrayItemAttribute()]
    public List<List<Foo>> lst { get { return _lst; } }
}
link|flag
I have them both public but still complaining? – theKing May 20 at 23:51
AWESOME!!! It works just the way I expected it to work :) – theKing May 21 at 0:18
vote up 0 vote down

I knew someone would mention public so i'll jump in here:

Yes, they need to be public, but that's not the only problem. Actually running a serialization doesn't work (gets the error described)

It doesn't like the List

[XmlRoot("Foo")]
public class Foo
{
    [XmlElement("name")]
    public string name;
}

[XmlRoot("FooContainer")]
public class FooContainer
{
    [XmlElement("container")]
    public List<SerializableList<Foo>> lst { get; set; }
}

[XmlRoot("list")]
public class SerializableList<T>
{
    [XmlElement("items")]
    public List<T> lst { get; set; }
}
link|flag
The solution you provided works? – theKing May 21 at 0:14
yeah it works. JP's is better though – Luke Schafer May 21 at 1:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.