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