Server.Network.Compression.Unpack C# (CSharp) Méthode

Unpack() public static méthode

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