ABB.Swum.Nodes.ArgumentNode.ToString C# (CSharp) 메소드

ToString() 공개 메소드

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