internal static string Read256String(ReaderBase reader)
        {
            byte length = reader.ReadByte();

            byte[] strBytes = reader.ReadBytes(length);
            return(Encoding.UTF8.GetString(strBytes));
        }