Newer
Older
DNA / corlib / System / ICloneable.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 99 bytes First commit
#if !LOCALTEST

namespace System {
	public interface ICloneable {

		object Clone();

	}
}

#endif