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