kartal
kartal

Reputation: 18096

how to access serial port using c#

I want to ask is there a library or assembly to access seral port to write on it using c#?

Upvotes: 2

Views: 680

Answers (1)

Reed Copsey
Reed Copsey

Reputation: 564801

You can use the System.IO.Ports.SerialPort class in the Framework. No extra library is required, since this is included in the System.dll assembly.

Upvotes: 6

Related Questions