vote up 1 vote down star
1

I Collected the info from one of the previous StackoverFlow Q & A that

The following items can be serialized using the XmLSerializer class:


  • •Public read/write properties and fields of public classes
  • •Classes that implement ICollection or IEnumerable
  • •XmlElement objects
  • •XmlNode objects
  • •DataSet objects

  • My Question is how can we develop a XMlSerilize Helper class that takes Generic Collection as parameter for Xml Serilization.

    flag

    @rengaseshan: I strongly recommend you read stackoverflow.com/editing-help and learn how to use it. Many of your questions are difficult to read because of using HTML. – John Saunders Aug 17 at 23:53

    2 Answers

    vote up 0 vote down check

    http://www.codeproject.com/KB/XML/CustomXmlSerializer.aspx?msg=3101055

    SUMMARY:CustomXmlSerializer is an alternative to XmlSerializer, supporting both shallow and deep serialization of ArrayLists, Collections, and Dictionaries.

    link|flag
    1  
    oh ! Thanks for sharing the info. – rengaseshan Aug 17 at 13:30
    vote up 2 vote down
    public class XmlSerializationHelper
    {
        public static void Serialize<T>(string filename, T obj)
        {
            XmlSerializer xs = new XmlSerializer(typeof(T));
            using (StreamWriter wr = new StreamWriter(filename))
            {
                xs.Serialize(wr, obj);
            }
        }
    
        public static T Deserialize<T>(string filename)
        {
            XmlSerializer xs = new XmlSerializer(typeof(T));
            using (StreamReader rd = new StreamReader(filename))
            {
                return (T)xs.Deserialize(rd);
            }
        }
    }
    

    (it's not specifically for generic collections, it works for any XML-serializable object)

    I'm not sure if that's what you were looking for... if not, please detail what you need

    link|flag
    That is what exactly I am looking for ! Thank you very much. – rengaseshan Aug 17 at 13:29
    That won't work for dictionaries. – Will Aug 17 at 13:59
    1  
    @Will : that's why I said "any XML-serializable object"... A dictionary is not XML serializable (unless it implements IXmlSerializable, see this link : weblogs.asp.net/pwelter34/archive/…) – Thomas Levesque Aug 17 at 14:37

    Your Answer

    Get an OpenID
    or

    Not the answer you're looking for? Browse other questions tagged or ask your own question.