System.Cloneable.cs

ylbtech-System.Cloneable.cs

 

1. Back to top
1、
#regionassembler mscorlib, Version = 4.0.0.0, Culture = neutral, PublicKeyToken = b77a5c561934e089
 // C: \ Program Files (x86) \ Reference Assemblies \ Microsoft \ Framework \ .NETFramework \ v4.6.1 \ mscorlib.dll 
#endregion 

using System.Runtime.InteropServices; 

namespace System 
{ 
    // 
    // Abstract:
     //      Clone support, which will create new instances of the class with the same values ​​as existing instances. 
    [ComVisible ( true )]
     public  interface ICloneable 
    { 
        // 
        // Summary:
         //      Create a new object that is a copy of the current instance.
        // 
        // Return result:
         //      A new object that is a copy of this instance.
        object Clone();
    }
}
2、
2. Back to top
 
3. Back to top
 
4. Back to top
 
5. Back to top
 
 
6. Back to top
 
warn Author: ylbtech
Source: http://ylbtech.cnblogs.com/
This article belongs to the author and blog Park total, welcome to reprint, but without the author's consent declared by this section must be retained, and given the original connection in the apparent position of the article page, otherwise Reserves the right to pursue legal responsibility.

Guess you like

Origin www.cnblogs.com/storebook/p/12677069.html