Exemplo n.º 1
0
		public static void Release()
		{
			_instance = null;
		}
Exemplo n.º 2
0
 public static object MemoryDecompress(byte[] bytes)
 {
     AcedInflator instance = new AcedInflator();
     byte[] objs = instance.Decompress(bytes, 0, 0, 0);
     return SerializerService.Deserialize(objs);
 }