Axiom.Runtime.AMHeap.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            string str = "";
            for (HeapNode h = _heap; h != null; h = h.Next)
            {
                str += " " + h.ToString() + " ";
            }
            return str;
        }