Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-233-lib.cs
1 // Compiler options: /t:library
2 using System;
3 using System.Collections.Generic;
4 using System.Text;
5 using System.ComponentModel;
6
7 public class MyClass<TItem>
8 {
9         public MyClass() { }
10
11         public event ListChangedEventHandler ListChanged;
12         public void AddListChangedEventHandler (ListChangedEventHandler handler)
13         {
14                 ListChanged += handler;
15         }
16
17         protected void OnListChanged (ListChangedEventArgs e)  {}
18 }