Not
Åtkomst till denna sida kräver auktorisation. Du kan prova att logga in eller byta katalog.
Åtkomst till denna sida kräver auktorisation. Du kan prova att byta katalog.
Inserts an element into the clock vector at the specified index.
Namespace: Microsoft.Synchronization
Assembly: Microsoft.Synchronization (in Microsoft.Synchronization.dll)
Syntax
'Declaration
Public Sub Insert ( _
index As Integer, _
item As IClockVectorElement _
)
'Usage
Dim instance As ClockVector
Dim index As Integer
Dim item As IClockVectorElement
instance.Insert(index, item)
public void Insert(
int index,
IClockVectorElement item
)
public:
virtual void Insert(
int index,
IClockVectorElement^ item
) sealed
abstract Insert :
index:int *
item:IClockVectorElement -> unit
override Insert :
index:int *
item:IClockVectorElement -> unit
public final function Insert(
index : int,
item : IClockVectorElement
)
Parameters
- index
Type: System.Int32
The value of item is inserted at this index.
- item
Type: Microsoft.Synchronization.IClockVectorElement
The element to insert into the clock vector.
Implements
Exceptions
| Exception | Condition |
|---|---|
| ArgumentException | item cannot be cast to ClockVectorElement. |