Beispiel #1
0
        public int read(
            HandleRef str,
            uint count, out uint ret)
        {
            byte[] buffer = new byte[count];
            ret = (uint)back.Read(buffer, 0, (int)count);
            string res = Encoding.ASCII.GetString(buffer);

            Base.StringSet(str, res);
            return(0);
        }