ListSortDirection.cs 338 B

1234567891011121314151617181920
  1. //
  2. // System.ComponentModel.ListSortDirection.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // (C) Rodrigo Moya, 2002
  8. //
  9. namespace System.ComponentModel
  10. {
  11. /// <summary>
  12. /// Specifies the direction of a sort operation.
  13. /// </summary>
  14. [Serializable]
  15. public enum ListSortDirection {
  16. Ascending = 0,
  17. Descending = 1
  18. }
  19. }