標題: 想問一下C#的兩個程式結合 [列印本頁] 作者: kc100639 時間: 2011-6-10 17:10 標題: 想問一下C#的兩個程式結合 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO.Ports;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string data = string.Empty;
//開啟rs232 Port (開啟COM1,鮑率為19200,同為檢查為元為沒有,位元率為8,停止位元數為1)
SerialPort rs232 = new SerialPort("COM1", 19200, Parity.None, 8, StopBits.One);
//超過5秒鐘(5000毫秒)沒讀到東西,則丟出一個例外(TimeoutException)
//開啟(建立)連線
rs232.Open();
while (true)
{
try
{
//由rs232讀入一個byte的資料
data = rs232.ReadLine();