C# 클래스 SharpGIS.ZLib.SharedUtils

파일 보기 프로젝트 열기: sozialhelden/wheelmap-wp7

공개 메소드들

메소드 설명
ReadInput ( System sourceTextReader, byte target, int start, int count ) : Int32

Reads a number of characters from the current source TextReader and writes the data to the target array at the specified index.

URShift ( int number, int bits ) : int

Performs an unsigned bitwise right shift with the specified number

URShift ( int number, long bits ) : int

Performs an unsigned bitwise right shift with the specified number

URShift ( long number, int bits ) : long

Performs an unsigned bitwise right shift with the specified number

URShift ( long number, long bits ) : long

Performs an unsigned bitwise right shift with the specified number

비공개 메소드들

메소드 설명
ToByteArray ( System sourceString ) : byte[]
ToCharArray ( byte byteArray ) : char[]

메소드 상세

ReadInput() 공개 정적인 메소드

Reads a number of characters from the current source TextReader and writes the data to the target array at the specified index.
public static ReadInput ( System sourceTextReader, byte target, int start, int count ) : Int32
sourceTextReader System The source TextReader to read from
target byte Contains the array of characteres read from the source TextReader.
start int The starting index of the target array.
count int The maximum number of characters to read from the source TextReader.
리턴 System.Int32

URShift() 공개 정적인 메소드

Performs an unsigned bitwise right shift with the specified number
public static URShift ( int number, int bits ) : int
number int Number to operate on
bits int Ammount of bits to shift
리턴 int

URShift() 공개 정적인 메소드

Performs an unsigned bitwise right shift with the specified number
public static URShift ( int number, long bits ) : int
number int Number to operate on
bits long Ammount of bits to shift
리턴 int

URShift() 공개 정적인 메소드

Performs an unsigned bitwise right shift with the specified number
public static URShift ( long number, int bits ) : long
number long Number to operate on
bits int Ammount of bits to shift
리턴 long

URShift() 공개 정적인 메소드

Performs an unsigned bitwise right shift with the specified number
public static URShift ( long number, long bits ) : long
number long Number to operate on
bits long Ammount of bits to shift
리턴 long