using System.Runtime.InteropServices;

namespace System
{
//
// 摘要:
// 支持克隆,即用与现有实例相同的值创建类的新实例。
[ComVisible(true)]
public interface ICloneable
{
//
// 摘要:
// 创建作为当前实例副本的新对象。

using System.Runtime.InteropServices;

namespace System
{
//
// 摘要:
// 支持克隆,即用与现有实例相同的值创建类的新实例。
[ComVisible(true)]
public interface ICloneable
{
//
// 摘要:
// 创建作为当前实例副本的新对象。
//
// 返回结果:
// 作为此实例副本的新对象。
object Clone();
}
}

 


//
// 返回结果:
// 作为此实例副本的新对象。
object Clone();
}
}

相关文章:

  • 2022-01-09
  • 2022-12-23
  • 2021-04-25
  • 2021-10-01
  • 2021-11-03
  • 2021-07-20
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-04
  • 2021-06-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-08
  • 2021-05-21
相关资源
相似解决方案