Closed GoogleCodeExporter closed 9 years ago
This issue was closed by revision r1037.
Original comment by diegogu...@gmail.com
on 19 Apr 2013 at 2:38
fixed with changeset: 1037
to me, looks ok that when you write a shapefile with an invalid attribute name
(i.e: name length > 11 chars) an exception is thrown.
so now the code is:
if (tempFieldName.Length > FieldNameMaxLength)
{
string s = String.Format("FieldName {0} is longer than {1} characters", fieldName, FieldNameMaxLength);
throw new ArgumentException(s);
}
thanks for pointing this.
Original comment by diegogu...@gmail.com
on 19 Apr 2013 at 2:40
Original issue reported on code.google.com by
tbe...@gmail.com
on 19 Apr 2013 at 11:23