23 lines
271 B
C#
Raw Normal View History

//
// 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
}
}