AForge.Genetic.GPCustomTree.ToString C# (CSharp) Метод

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

Get string representation of the chromosome by providing its expression in reverse polish notation (postfix notation).

The method returns string representation of the tree's root node (see GPTreeNode.ToString).

public ToString ( ) : string
Результат string
        public override string ToString()
        {
            return root.ToString();
        }