Click or drag to resize

ListExtensionsMoveItemToIndexT Method

Moves a item to another list position. All items inbetween the interval originalIndex and destinationIndex will slip by one position (except the item at originalIndex, which will of course move to destinationIndex.

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void MoveItemToIndex<T>(
	this IList<T> list,
	int originalIndex,
	int destinationIndex
)

Parameters

list  IListT
List to operate with.
originalIndex  Int32
Original position of the item.
destinationIndex  Int32
Destination position of the item.

Type Parameters

T
Type of the list items.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IListT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also