ArrayObject.SpliceSlowly 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
배열의 지정된 위치에 요소를 추가하고 배열에서 요소를 제거합니다. 요소를 추가하거나, 요소를 제거하거나, 둘 다 제거할 수 있습니다.
이 API는 제품 인프라를 지원하며 코드에서 직접 사용되지 않습니다.
protected:
void SpliceSlowly(System::UInt32 start, System::UInt32 deleteCount, cli::array <System::Object ^> ^ args, Microsoft::JScript::ArrayObject ^ outArray, System::UInt32 oldLength, System::UInt32 newLength);
protected void SpliceSlowly(uint start, uint deleteCount, object[] args, Microsoft.JScript.ArrayObject outArray, uint oldLength, uint newLength);
member this.SpliceSlowly : uint32 * uint32 * obj[] * Microsoft.JScript.ArrayObject * uint32 * uint32 -> unit
Protected Sub SpliceSlowly (start As UInteger, deleteCount As UInteger, args As Object(), outArray As ArrayObject, oldLength As UInteger, newLength As UInteger)
매개 변수
- start
- UInt32
요소를 추가하고 제거할 이 배열의 위치입니다.
- deleteCount
- UInt32
제거할 요소의 수(있는 경우)입니다.
- args
- Object[]
추가할 요소(있는 경우)입니다.
- outArray
- ArrayObject
제거된 경우 이 배열에서 제거된 요소가 포함된 배열입니다.
- oldLength
- UInt32
이 배열의 이전 길이입니다.
- newLength
- UInt32
이 배열의 새 길이입니다.