Segmenter.Base.Sequences.ComplexChain.ToList C# (CSharp) Méthode

ToList() public méthode

The to list.
public ToList ( ) : List
Résultat List
        public List<string> ToList()
        {
            var result = new List<string>();
            for (int i = 0; i < GetLength(); i++)
            {
                result.Add(this[i].ToString());
            }

            return result;
        }