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

ListChangedEventHandler.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02f5065b886400468c733edc11651d44d4279d94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// System.ComponentModel.ListChangedEventHandler.cs
//
// Author: Duncan Mak (duncan@ximian.com)
// 
// (C) Ximian, Inc.
//

using System;

namespace System.ComponentModel {
	[Serializable]
	public delegate void ListChangedEventHandler(object sender, 
					     ListChangedEventArgs e);
}