| 1234567891011121314151617181920 |
- //
- // System.ComponentModel.ListSortDirection.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- //
- // (C) Rodrigo Moya, 2002
- //
- namespace System.ComponentModel
- {
- /// <summary>
- /// Specifies the direction of a sort operation.
- /// </summary>
- [Serializable]
- public enum ListSortDirection {
- Ascending = 0,
- Descending = 1
- }
- }
|