BooCompiler.Tests.BooTestCaseUtil.ToXmlString C# (CSharp) Method

ToXmlString() public static method

public static ToXmlString ( Node node ) : string
node Node
return string
        public static string ToXmlString(Node node)
        {
            StringWriter sw = new StringWriter();
            new XmlSerializer(node.GetType()).Serialize(sw, node);
            return sw.ToString();
        }