Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

18 lines
392 B
C#

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