Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The following code sample shows how to serialize/deserialize to a file. How could I modify this to serialize to a variable instead of to a file? (Assume the variable would be passed in to the read/write methods instead of a file name).

    public static void WriteObject(string fileName)
    {
        Console.WriteLine(
            "Creating a Person object and serializing it.");
        Person p1 = new Person("Zighetti", "Barbara", 101);
        FileStream writer = new FileStream(fileName, FileMode.Create);
        DataContractSerializer ser =
            new DataContractSerializer(typeof(Person));
        ser.WriteObject(writer, p1);
        writer.Close();
    }

    public static void ReadObject(string fileName)
    {
        Console.WriteLine("Deserializing an instance of the object.");
        FileStream fs = new FileStream(fileName,
        FileMode.Open);
        XmlDictionaryReader reader =
            XmlDictionaryReader.CreateTextReader(fs, new XmlDictionaryReaderQuotas());
        DataContractSerializer ser = new DataContractSerializer(typeof(Person));

        // Deserialize the data and read it from the instance.
        Person deserializedPerson =
            (Person)ser.ReadObject(reader, true);
        reader.Close();
        fs.Close();
        Console.WriteLine(String.Format("{0} {1}, ID: {2}",
        deserializedPerson.FirstName, deserializedPerson.LastName,
        deserializedPerson.ID));
    }
share|improve this question
What type of variable would you want to be passing in? A string? a MemoryStream? – Kibbee Feb 7 '12 at 21:51
What kind of variable do you have in mind? byte[]? – svick Feb 7 '12 at 21:52
p1 is a variable and holds everything you want. – Henk Holterman Feb 7 '12 at 21:54
Actually, that's something else I was hoping to get a suggestion on. In this scenario, I really just want to make a copy of my object. I will be immediately deserializing it into a variable that is the copy. I know I could implement ICloneable, but I need to use serialization anyway so I figured I could just reuse that code. (Obviously this is just an example I lifted from Microsoft and my actual code will be serializing any number of different types). – Brandon Moore Feb 7 '12 at 21:55
@HenkHolterman Thanks for stating the obvious ;) – Brandon Moore Feb 7 '12 at 21:56

1 Answer

up vote 7 down vote accepted

You can change the FileStream to a memory stream and dump it to a byte[].

public static byte[] WriteObject<T>(T thingToSave)
{
    Console.WriteLine("Serializing an instance of the object.");
    byte[] bytes;
    using(var stream = new MemoryStream())
    {
        var serializer = new DataContractSerializer(typeof(T));
        serializer.WriteObject(stream, thingToSave);
        bytes = new byte[stream.Length];
        stream.Position = 0;
        stream.Read(bytes, 0, (int)stream.Length);
    }
    return bytes;

}

public static T ReadObject<T>(byte[] data)
{
    Console.WriteLine("Deserializing an instance of the object.");

    T deserializedThing = default(T);

    using(var stream = new MemoryStream(data))
    using(var reader = XmlDictionaryReader.CreateTextReader(stream, new XmlDictionaryReaderQuotas()))
    {
        var serializer = new DataContractSerializer(typeof(T));

        // Deserialize the data and read it from the instance.
        deserializedThing = (T)serializer.ReadObject(reader, true);
    }
    return deserializedThing;
}
share|improve this answer
Do you suppose a MemoryStream would be better/worse? – Brandon Moore Feb 7 '12 at 22:02
Better or worse than what? Writing to a file? Of course. – scottm Feb 7 '12 at 22:03
Better or worse than using a byte[] buffer? – Brandon Moore Feb 7 '12 at 22:04
1  
I would consider a MemoryStream a byte[] buffer that implements Stream – scottm Feb 7 '12 at 22:06
1  
As you write to the stream, the position advances. .Read() reads from the current position forward, so you want to set it to 0 so that you can read from the beginning. – scottm Feb 7 '12 at 22:49
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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