| 1234567891011121314151617181920 |
- //
- // System.ComponentModel.CollectionChangeAction.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- //
- // (C) Ximian, Inc
- //
- namespace System.ComponentModel
- {
- /// <summary>
- /// Specifies how the collection is changed.
- /// </summary>
- public enum CollectionChangeAction {
- Add = 1,
- Remove = 2,
- Refresh = 3
- }
- }
|