You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
407 B
18 lines
407 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Apewer
|
|
{
|
|
|
|
/// <summary>支持克隆,即用与现有实例相同的值创建类的新实例。</summary>
|
|
public interface ICloneable<T>
|
|
{
|
|
|
|
/// <summary>创建作为当前实例副本的新对象。</summary>
|
|
/// <returns>作为此实例副本的新对象。</returns>
|
|
T Clone();
|
|
|
|
}
|
|
|
|
}
|