C# 클래스 zxingwp7.common.ByteArray

This class implements an array of unsigned bytes.
파일 보기 프로젝트 열기: henningms/zxing2.0-wp7 1 사용 예제들

공개 메소드들

메소드 설명
ByteArray ( ) : System
ByteArray ( int size ) : System
ByteArray ( sbyte byteArray ) : System
appendByte ( int value_Renamed ) : void
at ( int index ) : int

Access an unsigned byte at location index.

reserve ( int capacity ) : void
set_Renamed ( int index, int value_Renamed ) : void
set_Renamed ( sbyte source, int offset, int count ) : void
size ( ) : int

메소드 상세

ByteArray() 공개 메소드

public ByteArray ( ) : System
리턴 System

ByteArray() 공개 메소드

public ByteArray ( int size ) : System
size int
리턴 System

ByteArray() 공개 메소드

public ByteArray ( sbyte byteArray ) : System
byteArray sbyte
리턴 System

appendByte() 공개 메소드

public appendByte ( int value_Renamed ) : void
value_Renamed int
리턴 void

at() 공개 메소드

Access an unsigned byte at location index.
public at ( int index ) : int
index int The index in the array to access. ///
리턴 int

reserve() 공개 메소드

public reserve ( int capacity ) : void
capacity int
리턴 void

set_Renamed() 공개 메소드

public set_Renamed ( int index, int value_Renamed ) : void
index int
value_Renamed int
리턴 void

set_Renamed() 공개 메소드

public set_Renamed ( sbyte source, int offset, int count ) : void
source sbyte
offset int
count int
리턴 void

size() 공개 메소드

public size ( ) : int
리턴 int