Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ListSortDirection.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b58a39a4170f23b82584812214faf24a7fa875f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.ComponentModel.ListSortDirection.cs
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//
// (C) Rodrigo Moya, 2002
//

namespace System.ComponentModel
{
	/// <summary>
	/// Specifies the direction of a sort operation.
	/// </summary>
	[Serializable]
	public enum ListSortDirection {
		Ascending = 0,
		Descending = 1
	}
}