This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the direction of a sort operation.</summary>
// Token: 0x0200015F RID: 351
[Token(Token = "0x200015F")]
public enum ListSortDirection
{
/// <summary>Sorts in ascending order.</summary>
// Token: 0x0400051B RID: 1307
[Token(Token = "0x400051B")]
Ascending,
/// <summary>Sorts in descending order.</summary>
// Token: 0x0400051C RID: 1308
[Token(Token = "0x400051C")]
Descending
}
}