SharpMap.Geometries.Polygon.Buffer C# (CSharp) Method

Buffer() public method

Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance. Calculations are in the Spatial Reference System of this Geometry.
public Buffer ( double d ) : Geometry
d double
return Geometry
        public override Geometry Buffer(double d)
        {
            throw new NotImplementedException();
        }