示例#1
0
        public void Send_1_2()
        {
            ByteBuffer buff = new ByteBuffer();

            buff.WriteString("ok");
            Client.SendMsg(1, 2, buff);
        }
示例#2
0
        public void Send_1_10(string _str)
        {
            ByteBuffer buff = new ByteBuffer();

            buff.WriteString("ok");
            Client.SendMsg(1, 10, buff);
        }