public static void readObject(this InputStream istream, ref IStreamable streamable, Type type)
 {
     streamable.serialize(istream);
 }
 public static void writeObject(this OutputStream ostream, IStreamable streamable)
 {
     streamable.serialize(ostream);
 }