Beispiel #1
0
        public void SendRecords()
        {
            string records = string.Join(";", ServerUtil.GetRecords());

            byte[] data = BitConverter.GetBytes(records.Length);
            stream.Write(data, 0, data.Length);
            data = Encoding.Unicode.GetBytes(records);
            stream.Write(data, 0, data.Length);
        }