System.Collections.ArrayList.ReadOnlyArrayList.Clone C# (CSharp) Méthode

Clone() public méthode

public Clone ( ) : Object
Résultat Object
            public override Object Clone()
            {
                ReadOnlyArrayList arrayList = new ReadOnlyArrayList(_list);
                arrayList._list = (ArrayList)_list.Clone();
                return arrayList;
            }