ModelItemCollection.Move(Int32, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将集合中的项移到另一个索引。
public:
abstract void Move(int fromIndex, int toIndex);
public abstract void Move (int fromIndex, int toIndex);
abstract member Move : int * int -> unit
Public MustOverride Sub Move (fromIndex As Integer, toIndex As Integer)
参数
- fromIndex
- Int32
要移动的项在移动之前的索引。
- toIndex
- Int32
项移动之后项的索引。
例外
fromIndex
或 toIndex
为负,或者大于或等于 Count。