I would like to buffer a polygon with the arcgispro sdk.
Here is basic concept in arcobjects
var pTopo = myFeature.Shape as ITopologicalOperator;
IPolygon pOutPoly = (IPolygon)pTopo.Buffer(dblBufDis);
what is most efficient way to do this with arcgispro sdk?
Thanks
Mike
The buffer snippet boils down to something like this:
using ArcGIS.Core.Geometry;
QueuedTask.Run(() => {
var bufferGeometry = GeometryEngine.Buffer(feature.GetShape(), dblBufDis);
});