AvalonStudio.TextEditor.Document.RopeTextSource.IndexOf C# (CSharp) Method

IndexOf() public method

public IndexOf ( char c, int startIndex, int count ) : int
c char
startIndex int
count int
return int
		public int IndexOf(char c, int startIndex, int count)
		{
			return rope.IndexOf(c, startIndex, count);
		}

Same methods

RopeTextSource::IndexOf ( string searchText, int startIndex, int count, StringComparison comparisonType ) : int