ABB.Swum.Nodes.EquivalenceNode.ToString C# (CSharp) Méthode

ToString() public méthode

Converts the EquivalenceNode to a string representation, comprising "EQUIV" and a string representation of the equivalent nodes.
public ToString ( ) : string
Résultat string
        public override string ToString() {
            //return "EQUIV" + EquivalentNodes.ToString();
            return string.Format("EQUIV[{0}]", string.Join<Node>(" ; ", EquivalentNodes));
        }