TSF.UmlToolingFramework.Wrappers.EA.Model.toArrayList C# (CSharp) Метод

toArrayList() публичный Метод

public toArrayList ( IEnumerable collection ) : ArrayList
collection IEnumerable
Результат ArrayList
        public ArrayList toArrayList(IEnumerable collection)
        {
            ArrayList arrayList = new ArrayList();
            foreach (object  element in collection)
            {
            arrayList.Add(element);
            }
            return arrayList;
        }