diff --git a/LASRead/LASFormat/Record.cs b/LASRead/LASFormat/Record.cs index d656ab4..55753b0 100644 --- a/LASRead/LASFormat/Record.cs +++ b/LASRead/LASFormat/Record.cs @@ -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(); } } }