ToString() public method

Returns the string representation of the nodes and tokens in this list, not including the first node or token's leading trivia and the last node or token's trailing trivia.
public ToString ( ) : string
return string
 /// <summary>
 /// Returns the string representation of the nodes in this list including separators but not including
 /// the first node's leading trivia and the last node or token's trailing trivia.
 /// </summary>
 /// <returns>
 /// The string representation of the nodes in this list including separators but not including
 /// the first node's leading trivia and the last node or token's trailing trivia.
 /// </returns>
 public override string ToString()
 {
     return(_list.ToString());
 }