23 lines
271 B
C#
23 lines
271 B
C#
|
//
|
||
|
// System.IO.Ports.Parity.cs
|
||
|
//
|
||
|
// Authors:
|
||
|
// Chris Toshok (toshok@ximian.com)
|
||
|
//
|
||
|
// (c) Copyright 2006 Novell, Inc. (http://www.novell.com)
|
||
|
//
|
||
|
|
||
|
namespace System.IO.Ports
|
||
|
{
|
||
|
public enum Parity
|
||
|
{
|
||
|
None,
|
||
|
Odd,
|
||
|
Even,
|
||
|
Mark,
|
||
|
Space
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|