ABB.Swum.Nodes.ArgumentNode.ToString C# (CSharp) Method

ToString() public method

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