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