// // System.ComponentModel.CollectionChangeAction.cs // // Author: // Rodrigo Moya (rodrigo@ximian.com) // // (C) Ximian, Inc // namespace System.ComponentModel { /// /// Specifies how the collection is changed. /// public enum CollectionChangeAction { Add = 1, Remove = 2, Refresh = 3 } }