Is there a way to save a list to disk generically? I tried data contract serializer, but it always generates an empty list.
    public static List<T> Load<T>() where T : class,new()
    {
        var serializer = new DataContractSerializer(typeof(List<T>));
        string path = HttpContext.Current.Server.MapPath("~/App_Data/" + typeof(T).ToString() + ".xml");
        if (!System.IO.File.Exists(path))
        {
            return new List<T>();
        }
        else
        {
            using (var s = new System.IO.FileStream(path, System.IO.FileMode.Open))
            {
                return serializer.ReadObject(s) as List<T>;
            }
        }
    }
    public static void Save<T>(List<T> data) where T : class,new()
    {
        var serializer = new DataContractSerializer(typeof(List<T>));
        Enumerate<T>(data);
        string path = HttpContext.Current.Server.MapPath("~/App_Data/" + typeof(T).ToString() + ".xml");
        using (var s = new System.IO.FileStream(path, System.IO.FileMode.Create))
        {
            serializer.WriteObject(s, data);
        }
    }
 
     
     
    