AvalonEdit
Item Property (index)
NamespacesICSharpCode.AvalonEdit.UtilsRope<(Of <(<'T>)>)>Item[([( Int32])])
Gets/Sets a single character. Runs in O(lg N) for random access. Sequential read-only access benefits from a special optimization and runs in amortized O(1).
Declaration Syntax
C#Visual BasicVisual C++
public T this[
	int index
] { get; set; }
Public Default Property Item ( _
	index As Integer _
) As T
	Get
	Set
public:
virtual property T default[int index] {
	T get (int index) sealed;
	void set (int index, T value) sealed;
}
Parameters
index (Int32)
Remarks
The getter counts as a read access and may be called concurrently to other read accesses.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionOffset is outside the valid range (0 to Length-1).

Assembly: ICSharpCode.AvalonEdit (Module: ICSharpCode.AvalonEdit.dll) Version: 5.0.0.4238