Ejemplo n.º 1
0
        public void writeByte(int v)
        {
            createMs();
            if (position > ms.Length)
            {
                ms.SetLength(position);
            }
            ms.Position = position;

            bw.Write((sbyte)v);

            position = (uint)ms.Position;
        }