Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
i want to use this method
but i can not modify the construct (CorridorPointCodeSelector) with linq
for example this failed
int counter = 1;
foreach (Corridor x in corridors)
{
CorridorPointCodeSelector selector = new CorridorPointCodeSelector(x);
CorridorPointCodeSelector selector1 = selector.Where(c=>c.CodeName =="ETW") as CorridorPointCodeSelector;
x.ExportFeatureLinesAsCogoPoints("POINT" + counter.ToString(), selector1 );
counter++;
}
Solved! Go to Solution.