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

3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Apewer
  5. {
  6. /// <summary>支持克隆,即用与现有实例相同的值创建类的新实例。</summary>
  7. public interface ICloneable<T>
  8. {
  9. /// <summary>创建作为当前实例副本的新对象。</summary>
  10. /// <returns>作为此实例副本的新对象。</returns>
  11. T Clone();
  12. }
  13. }