public void Write(byte[] WriteBytes) 
{
if (hComm!=INVALID_HANDLE_VALUE) 
{
OVERLAPPED ovlCommPort = new OVERLAPPED();
int BytesWritten = 0;
WriteFile(hComm,WriteBytes,WriteBytes.Length,ref BytesWritten,ref ovlCommPort);
}
else 
{
throw(new ApplicationException("串口未打开!"));

}
我发送一串字符“READY”(十进制82 69 65 68 89) ,接收到是210 177 196 246(十进制)应该是(十进制82 69 65 68 89) 
请问各位大虾们是什么问题呀?fsdy2000(乡愁) 写的串口发送的地址:
http://community.csdn.net/Expert/topic/4403/4403713.xml?temp=.8694269