Exemplo n.º 1
0
        internal static void Main(string[] args)
        {
            dynamic xml = new XmlBuilder();

            xml.Declaration();

            xml.user("Kiro Zlatniq", new {
                id = 1,
                username = "******",
                age = 50
            });

            Console.WriteLine(xml.ToString(true));
        }