Replaces the element at the specified index.

Namespace: SharpAssembler.Core
Assembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
protected override sealed void SetItem(
	int index,
	Constructable item
)
Visual Basic
Protected Overrides NotOverridable Sub SetItem ( _
	index As Integer, _
	item As Constructable _
)
Visual C++
protected:
virtual void SetItem(
	int index, 
	Constructable^ item
) override sealed

Parameters

index
Type: System..::..Int32
The zero-based index of the element to replace.
item
Type: SharpAssembler.Core..::..Constructable
The new value for the element at the specified index.

See Also