Vishcious.ArcGIS.SLContrib.ShapeFileRecord.ToString C# (CSharp) Метод

ToString() публичный Метод

Output some of the fields of the shapefile record.
public ToString ( ) : string
Результат 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