This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,19 @@
using System;
namespace System.ComponentModel
{
/// <summary>Specifies how the collection is changed.</summary>
// Token: 0x02000061 RID: 97
public enum CollectionChangeAction
{
/// <summary>Specifies that an element was added to the collection.</summary>
// Token: 0x0400013D RID: 317
Add = 1,
/// <summary>Specifies that an element was removed from the collection.</summary>
// Token: 0x0400013E RID: 318
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: 0x0400013F RID: 319
Refresh
}
}