Mono.TextEditor.TextDocument.LastIndexOf C# (CSharp) Method

LastIndexOf() public method

Gets the index of the last occurrence of the specified character in this text source.
The search proceeds backwards from (startIndex+count) to startIndex. This is different than the meaning of the parameters on string.LastIndexOf!
public LastIndexOf ( char c, int startIndex, int count ) : int
c char The search character
startIndex int Start index of the area to search.
count int Length of the area to search.
return int
		public int LastIndexOf (char c, int startIndex, int count)
		{
			return Text.LastIndexOf (c, startIndex, count);
		}
		

Same methods

TextDocument::LastIndexOf ( string searchText, int startIndex, int count, StringComparison comparisonType ) : int
TextDocument