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

IndexOfAny() public method

Gets the index of the first occurrence of any character in the specified array.
public IndexOfAny ( char anyOf, int startIndex, int count ) : int
anyOf char Characters to search for
startIndex int Start index of the area to search.
count int Length of the area to search.
return int
		public int IndexOfAny (char[] anyOf, int startIndex, int count)
		{
			return Text.IndexOfAny (anyOf, startIndex, count);
		}
		
TextDocument