Hi,
For my C# program to work as a serial port interface, I need to send "ENQ" and expect back "ACK".
From what i understood in replies to my earlier questions in this forum, i think the system expects me to send '5' and give back a '6' (ASCII equivalents of ENQ and ACK).
So instead of sending a string which is "ENQ", i can send a character which is '5', am i right ?
Thanks for all the answers, which pointed out that '5' is not ASCII 5 in C#.
Okay i read the comments now, i will try :-
serialPort.Write(new byte[]{5},0,1); Thanks.