0

I have been using this developers Guide I found on for AutoCAD .NET and I copied the example on page 67, however I get the error "A namespace cannot directly contain members such as fields or methods" at this line :

public static void ListEntities()

This is the code that I have in Visual Studio:

using Autodesk.AutoCAD.Runtime;
using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.DatabaseServices;

[CommandMethod("ListEntities")]

public static void ListEntities()

{  // Get the current document and database, and start a transaction 
    Document acDoc = Application.DocumentManager.MdiActiveDocument;
    Database acCurDb = acDoc.Database;
    using (Transaction acTrans = acCurDb.TransactionManager.StartTransaction())
    {      // Open the Block table record for read      
        BlockTable acBlkTbl;
        acBlkTbl = acTrans.GetObject(acCurDb.BlockTableId, OpenMode.ForRead) as BlockTable;
        // Open the Block table record Model space for read      
        BlockTableRecord acBlkTblRec;
        acBlkTblRec = acTrans.GetObject(acBlkTbl[BlockTableRecord.ModelSpace],
            OpenMode.ForRead) as BlockTableRecord;
        int nCnt = 0;
        acDoc.Editor.WriteMessage("\nModel space objects: ");
        // Step through each object in Model space and      
        // display the type of object found      
        foreach (ObjectId acObjId in acBlkTblRec)      
        { acDoc.Editor.WriteMessage("\n" + acObjId.ObjectClass.DxfName);
        nCnt = nCnt + 1;
    }
        // If no objects are found then display a message      
        if (nCnt == 0)      {
    acDoc.Editor.WriteMessage("\n No objects found");
}
        // Dispose of the transaction
    }
}

I have Accoremgd.dll, acdbmgd.dll and acmgd.dll referenced to the solution

0 Answers0