using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;

namespace WindowsApplication3
{
   public class MyType:ICloneable
    {
       ArrayList set;
       
       public MyType(ArrayList set)
       {
           this.set = (ArrayList) set.Clone();
       }
       
       public object Clone()
       {
           return new ArrayList(set);
       }
    }
}

相关文章:

  • 2021-05-18
  • 2022-01-01
  • 2021-10-03
  • 2022-12-23
  • 2021-06-28
  • 2021-12-31
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-24
  • 2022-02-27
相关资源
相似解决方案