-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Collections_OwnedCollection_2__ctor
Andrew Koryavchenko edited this page Jun 17, 2018
·
2 revisions
Initializes a new instance of the OwnedCollection(TOwner, TItem) class.
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public OwnedCollection(
TOwner owner,
Func<TItem, TOwner> ownerGetter,
Action<TItem, TOwner> ownerSetter
)
VB
Public Sub New (
owner As TOwner,
ownerGetter As Func(Of TItem, TOwner),
ownerSetter As Action(Of TItem, TOwner)
)
F#
new :
owner : 'TOwner *
ownerGetter : Func<'TItem, 'TOwner> *
ownerSetter : Action<'TItem, 'TOwner> -> OwnedCollection
- owner
- Type: TOwner
The owner for the collection. - ownerGetter
- Type: System.Func(TItem, TOwner)
Owner getter for the item. - ownerSetter
- Type: System.Action(TItem, TOwner)
Owner setter for the item.
OwnedCollection(TOwner, TItem) Class
CodeJam.Collections Namespace