예제 #1
0
 private void ReadObjectDummy(Java.IO.ObjectInputStream source)
 {
     count    = source.ReadInt();
     isDirect = source.ReadBoolean();
     encoding = source.ReadUTF();
     replace  = source.ReadUTF();
 }
 static string ReadNullableString(Java.IO.ObjectInputStream source)
 {
     if (source.ReadBoolean())
     {
         return(source.ReadUTF());
     }
     return(null);
 }