private void AddHexValue(sbyte value) { if (_bytesOnThisLine == 1) { // it is the first byte // out.append( NOTHING ) } else if (_bytesOnThisLine % _bytesPerGroup == 1) { // it is the first byte for a new byte group @out.append(_groupSeparator); } else { @out.append(_byteSeparator); } @out.printf("%X%X", 0xF & (value >> 4), 0xF & value); }
internal override void PrintBody(PrintStream @out, string exceptionLinePrefix) { @out.print(", filePageId:"); @out.print(FilePageId); @out.print(", cachePageId:"); @out.print(CachePageIdConflict); @out.print(", hit:"); @out.print(HitConflict); Print(@out, File); @out.append(", exclusiveLock:"); @out.print(ExclusiveLock); }