I'd like to enumerate all entities in an Autocad Drawing, but not using Autocad.Interop
reference.
With Interop I could just pick:
IAcadApplication App = (IAcadApplication)Application.AcadApplication;
IAcadDocument Doc = App.ActiveDocument;
foreach (IAcadEntity Ent in Doc.ModelSpace) // or paperspace, or any IAcadBlock
But with the Object Arx
references I can only find tutorials to get entities using transactions in a database, taking objects by ID. I think that's really boring stuff to slow down the works.