Пример #1
0
            static byte[]? ReadBytes(ICKBinaryReader r)
            {
                int l = r.ReadSmallInt32();

                if (l < 0)
                {
                    return(null);
                }
                return(r.ReadBytes(l));
            }