TonyGraycc 2016-09-20 08:25 采纳率: 0%
浏览 1122

C# 语句 请教~!!! 下面的 用中文表达的语句块 怎么用代码表示~!!!

        this.Invoke((EventHandler)(delegate
        {
            if (isOpen1)
            {
                var str = System.Text.Encoding.Default.GetString(buffer1);
                this.tbxRecvData.Text += sp1.ReadLine()+"\r\n";
            }
            else
            {
                Byte[] ReceivedData = new Byte[sp1.BytesToRead];
                sp1.Read(ReceivedData, 0, ReceivedData.Length); 
                string RecvDataText = null;
                for (int i = 0; i < ReceivedData.Length - 1; i++)
                {
                    RecvDataText += ("0x" + ReceivedData[i].ToString("X2") + "");
                }
                tbxRecvData.Text += RecvDataText;
            }
        }));
        if (isOpen2)
        {
            try
            {
                sp2.WriteLine("OneEquipment:" + tbxRecvData.Text);
            }
            catch (Exception)
            {
                MessageBox.Show("发送数据时发生错误", "错误提示~!");
                return;
            }
           else
                        {
                        //当tbxRecvData.Text 有数据时 换行 再发送
                        }
        }

                    请问  //中 中文代码怎么写  
                    谢谢了~!!!
  • 写回答

1条回答

  • 代码界的小学生 2016-09-20 08:51
    关注

    if (isOpen2)
    {

        }  else
            {
              //当tbxRecvData.Text 有数据时 换行 再发送
                            tbxRecvData.Text="\n"+tbxRecvData.Text;
             }
                         try
            {
                sp2.WriteLine("OneEquipment:" + tbxRecvData.Text);
            }
            catch (Exception)
            {
                MessageBox.Show("发送数据时发生错误", "错误提示~!");
                return;
            }
    
    
    
    评论

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog