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

gtest-233-exe.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea33161426126b6db58748ea8e56c28b4051783f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Compiler options: /r:gtest-233-lib.dll
// Dependencies: gtest-233-lib.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;

class Program
{
	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) { }
}