Example #1
0
 internal override void WriteImpl(MipsCommunicator physical)
 {
     physical.WriteHeader(Command);
     physical.Write(value1, ",");
     physical.Write(value2, ",");
     physical.WriteEnd();
 }
Example #2
0
 internal override void WriteImpl(MipsCommunicator physical)
 {
     physical.WriteHeader(Command);
     foreach (var value in bytevalue)
     {
         physical.Write(value, ",");
     }
     physical.WriteEnd();
 }
Example #3
0
 internal void WriteTo(MipsCommunicator physical)
 {
     try
     {
         WriteImpl(physical);
     }
     catch
     {
         throw new InvalidOperationException();
     }
 }
Example #4
0
 private string Read(MipsCommunicator physical)
 {
     return(physical.ReadLine());
 }
Example #5
0
 internal abstract void WriteImpl(MipsCommunicator physical);