AvalonStudio.TextEditor.Document.DocumentLine.ToString C# (CSharp) Method

ToString() public method

Gets a string with debug output showing the line number and offset. Does not include the line's text.
public ToString ( ) : string
return string
		public override string ToString()
		{
			if (IsDeleted)
				return "[DocumentLine deleted]";
			return string.Format(
				CultureInfo.InvariantCulture,
				"[DocumentLine Number={0} Offset={1} Length={2}]", LineNumber, Offset, Length);
		}