Microsoft.Cci.SourceDocumentWithInclusion.GetText C# (CSharp) Method

GetText() public method

Returns the source text of the document in string form. Each call may do significant work, so be sure to cache this.
public GetText ( ) : string
return string
    public string GetText()
      //^ ensures result.Length == this.Length;
    {
      string result = this.WrappedDocument.GetText();
      //^ assume result.Length == this.Length; //assume that things stay the same when unwrapping
      //^ assume false;
      return result;
    }