1 // Compiler options: /r:gtest-233-lib.dll
3 using System
.Collections
.Generic
;
5 using System
.ComponentModel
;
9 static void Main (string[] args
)
11 MyClass
<int> list
= new MyClass
<int>();
13 list
.ListChanged
+= new ListChangedEventHandler (list_ListChanged
);
16 static void list_ListChanged (object sender
, ListChangedEventArgs e
) { }