Пример #1
0
 private void button_read_uint_Click(object sender, EventArgs e)
 {
     // 读取uint变量
     if (textBox11.Text == "1")
     {
         DemoUtils.ReadResultRender(busTcpServer.ReadUInt32(textBox3.Text), textBox3.Text, textBox4);
     }
     else
     {
         DemoUtils.ReadResultRender(busTcpServer.ReadUInt32(textBox3.Text, ushort.Parse(textBox11.Text)), textBox3.Text, textBox4);
     }
 }
Пример #2
0
 private void button_read_uint_Click(object sender, EventArgs e)
 {
     // 读取uint变量
     readResultRender(busTcpServer.ReadUInt32(ushort.Parse(textBox3.Text)), textBox3.Text, textBox4);
 }
 private void button_read_uint_Click(object sender, EventArgs e)
 {
     // 读取uint变量
     DemoUtils.ReadResultRender(busTcpServer.ReadUInt32(textBox3.Text), textBox3.Text, textBox4);
 }