Available Parity options : SerialPort « Development « VB.Net
- VB.Net
- Development
- SerialPort
Available Parity options
Imports System
Imports System.IO.Ports
Imports System.Threading
Public Class PortChat
Public Shared Sub Main()
Dim s As String
For Each s In [Enum].GetNames(GetType(Parity))
Console.WriteLine(" {0}", s)
Next s
End Sub
End Class
Related examples in the same category