C# 클래스 ArrayExtension, Adnc

파일 보기 프로젝트 열기: AlphaYu/Adnc 1 사용 예제들

공개 메소드들

메소드 설명
BlockCopy ( Array src, int srcOffset, Array dst, int dstOffset, int count ) : void

Copies a specified number of bytes from a source array starting at a particular offset to a destination array starting at a particular offset.

메소드 상세

BlockCopy() 공개 정적인 메소드

Copies a specified number of bytes from a source array starting at a particular offset to a destination array starting at a particular offset.
public static BlockCopy ( Array src, int srcOffset, Array dst, int dstOffset, int count ) : void
src Array The source buffer.
srcOffset int The zero-based byte offset into .
dst Array The destination buffer.
dstOffset int The zero-based byte offset into .
count int The number of bytes to copy.
리턴 void