Vishcious.ArcGIS.SLContrib.ShapeFileRecord.ToString C# (CSharp) Method

ToString() public method

Output some of the fields of the shapefile record.
public ToString ( ) : string
return string
        public override string ToString()
        {
            StringBuilder sb = new StringBuilder();
            sb.AppendFormat( "ShapeFileRecord: RecordNumber={0}, ContentLength={1}, ShapeType={2}",
                this.recordNumber, this.contentLength, this.shapeType );

            return sb.ToString();
        }
        #endregion Public methods