If I serialize an object (a class in C#) to binary format (file), is it possible for someone to recover the data from the object, without using the original application to deserialize it back into the object?
(i.e. like say the class I serialized contained reference to another class that contained an array of integer values, would they somehow be able to get to that array of integer values)