Segmenter.Base.Sequences.ComplexChain.ToList C# (CSharp) Method

ToList() public method

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

            return result;
        }