AD
Administrator
Syncfusion Team
June 23, 2008 07:08 PM UTC
In order to get the casting to work, I think you will need to have your derived class implement ICloneable.
public class DerivedNumberList : ArrayList, ICloneable
{
#region ICloneable Members
object ICloneable.Clone()
{
DerivedNumberList list = new DerivedNumberList();
list.AddRange(this.ToArray());
return list;
}
#endregion
}