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

ToString() public méthode

Converts the ArgumentNode to a string representation, containing the preposition and a string representation of the argument.
public ToString ( ) : string
Résultat string
        public override string ToString() {
            return string.Format("{0} {1}", Preposition, Argument);
        }