ArcGIS Pro 2.6 API Reference Guide
PolylineBuilder Constructor(IEnumerable<MapPoint>)
Example 

ArcGIS.Core.Geometry Namespace > PolylineBuilder Class > PolylineBuilder Constructor : PolylineBuilder Constructor(IEnumerable<MapPoint>)
Points for the first part.
Initializes a new instance of the PolylineBuilder class. This method must be called on the MCT. Use QueuedTask.Run.
Syntax
public PolylineBuilder( 
   IEnumerable<MapPoint> points
)
Public Function New( _
   ByVal points As IEnumerable(Of MapPoint) _
)

Parameters

points
Points for the first part.
Exceptions
ExceptionDescription
Incompatible spatial references
This method or property must be called within the lambda passed to QueuedTask.Run.
points is null.
Example
List<MapPoint> firstPoints = new List<MapPoint>();
firstPoints.Add(MapPointBuilder.CreateMapPoint(1.0, 1.0));
firstPoints.Add(MapPointBuilder.CreateMapPoint(1.0, 2.0));
firstPoints.Add(MapPointBuilder.CreateMapPoint(2.0, 2.0));
firstPoints.Add(MapPointBuilder.CreateMapPoint(2.0, 1.0));

List<MapPoint> nextPoints = new List<MapPoint>();
nextPoints.Add(MapPointBuilder.CreateMapPoint(11.0, 1.0));
nextPoints.Add(MapPointBuilder.CreateMapPoint(11.0, 2.0));
nextPoints.Add(MapPointBuilder.CreateMapPoint(12.0, 2.0));
nextPoints.Add(MapPointBuilder.CreateMapPoint(12.0, 1.0));

// Builder constructors need to run on the MCT.
ArcGIS.Desktop.Framework.Threading.Tasks.QueuedTask.Run(() =>
{
  using (PolylineBuilder pBuilder = new PolylineBuilder(firstPoints))
  {
    pBuilder.AddPart(nextPoints);

    Polyline polyline = pBuilder.ToGeometry();
    // polyline p has 2 parts

    pBuilder.RemovePart(0);
    polyline = pBuilder.ToGeometry();
    // polyline p has 1 part
  }
});
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 7

See Also

Reference

PolylineBuilder Class
PolylineBuilder Members
Overload List