Shapefile.Shape.Shape C# (CSharp) Метод

Shape() защищенный Метод

Base Shapefile shape - contains only the shape type and metadata plus helper methods. An instance of Shape is the Null ShapeType. If the Type field is not ShapeType.Null then cast to the more specific shape (i.e. ShapePolygon).
protected Shape ( ShapeType shapeType, int recordNumber, StringDictionary metadata, IDataRecord dataRecord ) : System
shapeType ShapeType The ShapeType of the shape
recordNumber int The record number in the Shapefile
metadata System.Collections.Specialized.StringDictionary Metadata about the shape (optional)
dataRecord IDataRecord IDataRecord associated with the shape
Результат System
        protected internal Shape(ShapeType shapeType, int recordNumber, StringDictionary metadata, IDataRecord dataRecord)
        {
            _type = shapeType;
            _metadata = metadata;
            _recordNumber = recordNumber;
            _dataRecord = dataRecord;
        }