コード例 #1
0
ファイル: LogEntry.cs プロジェクト: ryanbehr/csrosa
 /* (non-Javadoc)
  * @see org.javarosa.core.util.externalizable.Externalizable#writeExternal(java.io.DataOutputStream)
  */
 //UPGRADE_TODO: Class 'java.io.DataOutputStream' was converted to 'System.IO.BinaryWriter' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javaioDataOutputStream'"
 public virtual void writeExternal(System.IO.BinaryWriter out_Renamed)
 {
     //UPGRADE_NOTE: ref keyword was added to struct-type parameters. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1303'"
     ExtUtil.writeDate(out_Renamed, ref time);
     ExtUtil.writeString(out_Renamed, ExtUtil.emptyIfNull(type));
     ExtUtil.writeString(out_Renamed, ExtUtil.emptyIfNull(message));
 }