The XMLHelper class.
	
	
	
		
 
 
	
	
	
		
 
 
save a list<T> to xml file
	
	
	
		
 
 
read XML file to list<T>
	
	
	
		
 
 
	
	
	
		
		
		
			
		
		
	
	
		 
	
refs :
https://www.dotnetcurry.com/linq/564/linq-to-xml-tutorials-examples
https://blogs.msdn.microsoft.com/wriju/2008/03/24/linq-to-xml-join-xml-data/
https://orderofcode.com/2016/05/31/reading-big-xmls-in-net/
			
			
		JavaScript:
	
	// src - https://stackoverflow.com/a/25369059/1320686
public static class XmlHelper
{
    public static bool NewLineOnAttributes { get; set; }
    /// <summary>
    /// Serializes an object to an XML string, using the specified namespaces.
    /// </summary>
    public static string ToXml(object obj, XmlSerializerNamespaces ns)
    {
        Type T = obj.GetType();
        var xs = new XmlSerializer(T);
        var ws = new XmlWriterSettings { Indent = true, NewLineOnAttributes = NewLineOnAttributes, OmitXmlDeclaration = true };
        var sb = new StringBuilder();
        using (XmlWriter writer = XmlWriter.Create(sb, ws))
        {
            xs.Serialize(writer, obj, ns);
        }
        return sb.ToString();
    }
    /// <summary>
    /// Serializes an object to an XML string.
    /// </summary>
    public static string ToXml(object obj)
    {
        var ns = new XmlSerializerNamespaces();
        ns.Add("", "");
        return ToXml(obj, ns);
    }
    /// <summary>
    /// Deserializes an object from an XML string.
    /// </summary>
    public static T FromXml<T>(string xml)
    {
        XmlSerializer xs = new XmlSerializer(typeof(T));
        using (StringReader sr = new StringReader(xml))
        {
            return (T)xs.Deserialize(sr);
        }
    }
    /// <summary>
    /// Deserializes an object from an XML string, using the specified type name.
    /// </summary>
    public static object FromXml(string xml, string typeName)
    {
        Type T = Type.GetType(typeName);
        XmlSerializer xs = new XmlSerializer(T);
        using (StringReader sr = new StringReader(xml))
        {
            return xs.Deserialize(sr);
        }
    }
    /// <summary>
    /// Serializes an object to an XML file.
    /// </summary>
    public static void ToXmlFile(Object obj, string filePath)
    {
        var xs = new XmlSerializer(obj.GetType());
        var ns = new XmlSerializerNamespaces();
        var ws = new XmlWriterSettings { Indent = true, NewLineOnAttributes = NewLineOnAttributes, OmitXmlDeclaration = true };
        ns.Add("", "");
        using (XmlWriter writer = XmlWriter.Create(filePath, ws))
        {
            xs.Serialize(writer, obj);
        }
    }
    /// <summary>
    /// Deserializes an object from an XML file.
    /// </summary>
    public static T FromXmlFile<T>(string filePath)
    {
        StreamReader sr = new StreamReader(filePath);
        try
        {
            var result = FromXml<T>(sr.ReadToEnd());
            return result;
        }
        catch (Exception e)
        {
            throw new Exception("There was an error attempting to read the file " + filePath + "\n\n" + e.InnerException.Message);
        }
        finally
        {
            sr.Close();
        }
    }
}
		JavaScript:
	
	public class Supplier
{
	public string CompanyName { get; set; }
	public string ContactName { get; set; }
	public string ContactTitle { get; set; }
	public string Address { get; set; }
}save a list<T> to xml file
		JavaScript:
	
	List<Supplier> c = new List<Supplier> {
	new Supplier { Address = "1223 Clousson Road", CompanyName = "Iowa", ContactName = "Danbury",ContactTitle = "Ms"}, 
	new Supplier { Address = "3165 Star Route", CompanyName = "Bridgeview", ContactName = "Illinois",ContactTitle = "Mr"}
};
XmlHelper.ToXmlFile(c, @"x:\table.xml");read XML file to list<T>
		JavaScript:
	
	var all = XmlHelper.FromXmlFile<List<Supplier>>(@"x:\table.xml");
Console.WriteLine(all);
var q = all.Where(x => x.CompanyName == "Iowa").FirstOrDefault();
Console.WriteLine(q); 
	refs :
https://www.dotnetcurry.com/linq/564/linq-to-xml-tutorials-examples
https://blogs.msdn.microsoft.com/wriju/2008/03/24/linq-to-xml-join-xml-data/
https://orderofcode.com/2016/05/31/reading-big-xmls-in-net/
