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

RenamedEventHandler.cs « System.IO « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50b284123913e34d9848a96f20fd4278454e89b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 
// System.IO.FileSystemEventHandler.cs
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2002
//

using System;

namespace System.IO {
	[Serializable]
	public delegate void RenamedEventHandler (object sender, RenamedEventArgs e);
}