private string LabelValue(int recordOffset) { int labelLength = MetaDataBuffer.GetInt(recordOffset + LABEL_OFFSET); byte[] stringInBytes = new byte[labelLength]; MetaDataBuffer.GetBytes(recordOffset + LABEL_OFFSET + BitUtil.SIZE_OF_INT, stringInBytes); return(LabelCharset.GetString(stringInBytes)); }