Polyline plxy=new Polyline();
for(int i=0;i<pointcols.Count;i++)
{
plxy.AddVertexAt(i, pointcols, 0, 0, 0);
}
plxy.RemoveVertexAt(0);
int plxyCount = Convert.ToInt32(plxy.EndParam);
运行int plxyCount = Convert.ToInt32(plxy.EndParam) 时出现错误eDegenerateGeometry
这是什么错误呢,有时候有错,有时候又不出现错误。 |