Bridge

String..::..CharCodeAt Method

The charCodeAt() method returns the numeric Unicode value of the character at the given index (except for unicode codepoints > 0x10000).

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


public int CharCodeAt(
	int index
)
Public Function CharCodeAt ( _
	index As Integer _
) As Integer
public:
int^ CharCodeAt(
	int^ index
)

Parameters

index
Type: System..::..Int32
An integer greater than or equal to 0 and less than the length of the string; if it is not a number, it defaults to 0.

Return Value