コード例 #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);
 }