Click or drag to resize
JsonStringChars Property
Gets the Char object at a specified position in the current object.

Namespace: Dextronet.Jsonie
Assembly: Dextronet.Jsonie (in Dextronet.Jsonie.dll) Version: 1.0.0.0
Syntax
public char this[
	int index
] { get; }

Parameters

index
Type: SystemInt32
A position in the current string.

Property Value

Type: Char
The char at position index.
Exceptions
ExceptionCondition
IndexOutOfRangeException index is greater than or equal to the length of this object or less than zero.
Remarks
The index parameter is zero-based.
See Also