Game Framework
2021.05.31
|
默认压缩解压缩辅助器。 更多...
Public 成员函数 | |
bool | Compress (byte[] bytes, int offset, int length, Stream compressedStream) |
压缩数据。 更多... | |
bool | Compress (Stream stream, Stream compressedStream) |
压缩数据。 更多... | |
bool | Decompress (byte[] bytes, int offset, int length, Stream decompressedStream) |
解压缩数据。 更多... | |
bool | Decompress (Stream stream, Stream decompressedStream) |
解压缩数据。 更多... | |
默认压缩解压缩辅助器。
bool Compress | ( | byte[] | bytes, |
int | offset, | ||
int | length, | ||
Stream | compressedStream | ||
) |
压缩数据。
bytes | 要压缩的数据的二进制流。 |
offset | 要压缩的数据的二进制流的偏移。 |
length | 要压缩的数据的二进制流的长度。 |
compressedStream | 压缩后的数据的二进制流。 |
bool Compress | ( | Stream | stream, |
Stream | compressedStream | ||
) |
压缩数据。
stream | 要压缩的数据的二进制流。 |
compressedStream | 压缩后的数据的二进制流。 |
bool Decompress | ( | byte[] | bytes, |
int | offset, | ||
int | length, | ||
Stream | decompressedStream | ||
) |
解压缩数据。
bytes | 要解压缩的数据的二进制流。 |
offset | 要解压缩的数据的二进制流的偏移。 |
length | 要解压缩的数据的二进制流的长度。 |
decompressedStream | 解压缩后的数据的二进制流。 |
bool Decompress | ( | Stream | stream, |
Stream | decompressedStream | ||
) |
解压缩数据。
stream | 要解压缩的数据的二进制流。 |
decompressedStream | 解压缩后的数据的二进制流。 |