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