[System] Process.WaitForExit now triggers event Exited.
[mono.git] / mcs / class / corlib / System / ICloneable.cs
index 65aa745729052d8fe5c8e1c0696638bbadd4d616..931f53422a283f7738ed42ecfe85ccb5f13a3f3d 100644 (file)
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
+using System.Runtime.InteropServices;
 
 namespace System {
-
-       public interface ICloneable {
+       [ComVisible(true)]
+#if INSIDE_CORLIB
+       public
+#else
+       internal
+#endif
+       interface ICloneable {
                object Clone ();
        }
 }