请教一下CAD2007与2006是不是.net api 又区别``为什么我在2006能运行的c#二次开发程序的调试,在2007用netload加载后 运行不了命令` 比如: using Autodesk.AutoCAD.ApplicationServices; using Autodesk.AutoCAD.EditorInput; using Autodesk.AutoCAD.Runtime; [CommandMethod("HelloWorld")] public void HelloWorld() { Editor ed = Application.DocumentManager.MdiActiveDocument.Editor; ed.WriteMessage("Hello World"); } 调试里面也使用了调用cad2007程序启动 到调试后在cad2007中,我调用了.NET组件 提示不存在"helloword"命令啊`` 谢谢`` |