I want to iterate throught collection Model.Features and i don't know how type of Item i use. if i use SolidEdgePart.BodyFeature as item type occurs error.
example in C#:
foreach(SolidEdgePart.BodyFeature F in model.Features) // thrown exception
{
.
.
.
} |