New/Updated test cases. Fixed TraceTest so that it isn't causing test
[mono.git] / mcs / class / System / System.ComponentModel / CollectionChangeAction.cs
1 //
2 // System.ComponentModel.CollectionChangeAction.cs
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //
7 // (C) Ximian, Inc
8 //
9
10 namespace System.ComponentModel
11 {
12         /// <summary>
13         /// Specifies how the collection is changed.
14         /// </summary>
15         public enum CollectionChangeAction {
16                 Add = 1,
17                 Remove = 2,
18                 Refresh = 3
19         }
20 }