public static DEAL_POKER decode(byte[] data) { DEAL_POKER proto = newBuilder(); proto.build(data); return(proto); }
public void addDealPoker(DEAL_POKER value) { if (!this.hasDealPoker()) { this.__flag[0] = (byte)(this.__flag[0] | 1); } this.dealPoker.Add(value); }
public void build(byte[] data) { ByteBuffer buf = ByteBuffer.wrap(data); for (int i = 0; i < this.__flag.Length; i++) { this.__flag[i] = buf.get(); } if (this.hasDealPoker()) { int size = buf.getShort(); for (int i = 0; i < size; i++) { byte[] bytes = new byte[buf.getInt()]; buf.get(ref bytes, 0, bytes.Length); this.dealPoker.Add(DEAL_POKER.decode(bytes)); } } }