Table of Contents

Property this

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

this[TKey]

Gets or sets array element.

public TValue this[TKey index] { get; set; }

Parameters

index TKey

Index of the array element.

Property Value

TValue

this[int]

Gets or sets array element.

public TValue this[int index] { get; set; }

Parameters

index int

Index of the array element.

Property Value

TValue

this[TKey[]]

Sets the same value to all the items with the specified keys.

public TValue this[TKey[] keys] { set; }

Parameters

keys TKey[]

Array of keys.

Property Value

TValue