Fixed an issue in ToString()

This commit is contained in:
Brychan Dempsey 2021-11-17 13:16:45 +13:00
parent 5af930b4ea
commit 9335d37f7c

View File

@ -200,7 +200,7 @@ namespace LASRead.LASFormat
sb.Append("Record ID: " + RecordID.ToString() + Environment.NewLine);
sb.Append("Record Length After Header: " + RecordID.ToString() + Environment.NewLine);
sb.Append("Description: " + new string(DataHelpers.ToCharArray(Description)) + Environment.NewLine);
return base.ToString();
return sb.ToString();
}
}
}