CFGLib.Parsers.Forests.LeafNode.GetSentence C# (CSharp) Method

GetSentence() public abstract method

public abstract GetSentence ( ) : Sentence
return Sentence
		public abstract Sentence GetSentence();
		

Usage Example

Example #1
0
 internal override string ToStringSelf()
 {
     return(string.Format("{0} ({1}, {2})", _leafNode.GetSentence(), StartPosition, EndPosition));
 }