Ejemplo n.º 1
0
 public double ReadDouble(string address)
 {
     HslCommunication.OperateResult <double> rst;
     rst = TCP.ReadDouble(address);
     if (rst.IsSuccess)
     {
         return(rst.Content);
     }
     MsgChannl.SendMsg(rst.Message);
     return(0);
 }