public object Restore(ByteQue que) { if (que.Pop <bool>()) { return(que.Pop <short>()); } return(null); }
public object Restore(ByteQue que) { if (que.Pop <bool>()) { byte[] arr = new byte[que.PopSize()]; for (int i = 0; i < arr.Length; ++i) { arr[i] = que.Pop <byte>(); } return(Encoding.UTF8.GetString(arr)); } return(null); }