Server.Network.Compressor32.Decompress C# (CSharp) Méthode

Decompress() public méthode

public Decompress ( byte dest, int &destLength, byte source, int sourceLength ) : ZLibError
dest byte
destLength int
source byte
sourceLength int
Résultat ZLibError
		public ZLibError Decompress( byte[] dest, ref int destLength, byte[] source, int sourceLength ) {
			return uncompress( dest, ref destLength, source, sourceLength );
		}
	}