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,24 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies how the collection is changed.</summary>
// Token: 0x020000F3 RID: 243
[Token(Token = "0x20000F3")]
public enum CollectionChangeAction
{
/// <summary>Specifies that an element was added to the collection.</summary>
// Token: 0x04000474 RID: 1140
[Token(Token = "0x4000474")]
Add = 1,
/// <summary>Specifies that an element was removed from the collection.</summary>
// Token: 0x04000475 RID: 1141
[Token(Token = "0x4000475")]
Remove,
/// <summary>Specifies that the entire collection has changed. This is caused by using methods that manipulate the entire collection, such as <see cref="M:System.Collections.CollectionBase.Clear" />.</summary>
// Token: 0x04000476 RID: 1142
[Token(Token = "0x4000476")]
Refresh
}
}