// // System.ComponentModel.ListSortDirection.cs // // Author: // Rodrigo Moya (rodrigo@ximian.com) // // (C) Rodrigo Moya, 2002 // namespace System.ComponentModel { /// /// Specifies the direction of a sort operation. /// [Serializable] public enum ListSortDirection { Ascending = 0, Descending = 1 } }