Searches for the specified char pairs in the collection.

Namespace:  C1.Win.C1Spell
Assembly:  C1.Win.C1Spell.2 (in C1.Win.C1Spell.2.dll)

Syntax

C#
public int IndexOf(
	char char1,
	char char2
)
Visual Basic (Declaration)
Public Function IndexOf ( _
	char1 As Char, _
	char2 As Char _
) As Integer

Parameters

char1
Type: System..::.Char
First char.
char2
Type: System..::.Char
Second char.

Return Value

The index of the occurrence of char pair within the collection, if found. Otherwise -1.

Remarks

Char comparsions are case-insensitive.

See Also