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

ICloneable.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 792550db1f5adb2ce7f0577e4b88d2f1be09d326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// System.ICloneable.cs
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

namespace System {

	public interface ICloneable {
		object Clone ();
	}
}