Gets the index of the character specified (Invariant culture, Ignore case).

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static int IndexOf(
	this StringBuilder sb,
	char ch
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function IndexOf ( 
	sb As StringBuilder,
	ch As Char
) As Integer
Visual C++
public:
[ExtensionAttribute]
static int IndexOf(
	StringBuilder^ sb, 
	wchar_t ch
)
F#
static member IndexOf : 
        sb : StringBuilder * 
        ch : char -> int 

Parameters

sb
Type: System.Text..::..StringBuilder
String builder instance
ch
Type: System..::..Char
Character to search for

Return Value

Type: Int32
Index of the character

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type StringBuilder. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also