-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Collections_OwnedCollectionBase_3_GetKeyForItem
Andrew Koryavchenko edited this page Jun 17, 2018
·
2 revisions
When implemented in a derived class, extracts the key from the specified element.
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
protected override sealed TKey GetKeyForItem(
TItem item
)
VB
Protected Overrides NotOverridable Function GetKeyForItem (
item As TItem
) As TKey
F#
abstract GetKeyForItem :
item : 'TItem -> 'TKey
override GetKeyForItem :
item : 'TItem -> 'TKey
- item
- Type: TItem
The element from which to extract the key.
Type: TKey
The key for the specified element.
OwnedCollectionBase(TOwner, TKey, TItem) Class
CodeJam.Collections Namespace