Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-233.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11f4c476fbfb9c51d2327173c4ae3d7efd686bf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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) { }
}