开发者

XML Generator, Poco classes

开发者 https://www.devze.com 2023-04-08 12:07 出处:网络
Is there a XML generator that creates a XML file based on my poco classes? I also want 开发者_StackOverflow社区my nested classes in the XML output.

Is there a XML generator that creates a XML file based on my poco classes? I also want 开发者_StackOverflow社区my nested classes in the XML output.

Example:

public class Person
{
    public string Name { get; set; }
    public List<Child> Children { get; set; }
}

public class Child
{
    public string Name { get; set; }
}


System.Xml.Serialization namespace, with emphasis on the XmlSerializer class.

0

精彩评论

暂无评论...
验证码 换一张
取 消